@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Norse';
    src: url('../fonts/Norse.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Norse';
    src: url('../fonts/Norsebold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1rem;
}


.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.container_img {
    flex: 1;
    height: 100%;
    width: auto;
    background-image: url('../images/halie-west-25xggax4bSA-unsplash.jpg');
    background-size: cover;
    z-index: -1;
}

.container_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 200px;
    background-color: rgba(0, 0, 0, 0.5);
}

.logo_img {
    width: 120px;
}

.container_logo h1 {
    font-family: 'Norse';
    font-size: 7rem;
    color: white;
}

.content {
    flex: 2;
}

.form_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    background-color: #f7f7f7;
}

.form_content .form_infos, .form_area, .form_footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}

.form_infos p {
    font-size: 1.4rem;
    font-weight: 600;
}

.form_area {
    width: 100%;
    background-color: white;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.137);
}

.form_row {
    display: flex;
    gap: 100px;
}

.form_item {
    display: flex;
    flex-direction: column;
}

.form_item label {
    text-transform: uppercase;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.form_item input {
    width: 250px;
    max-width: 250px;
    height: 30px;
    max-height: 30px;
    border-radius: 5px;
    border: 1px solid #E5E7EB;
}

.form_item input:focus {
    outline: none;
    border-color:rgb(19, 19, 179);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.267);
}

.form_item input[type="password"]:invalid {
    border-color: red;
}

.btn_create{
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 10px 10px 10px;
    max-width: 240px;
    border-radius: 7px;
    border: none;
    background-color: #596D48;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.185);
    cursor: pointer;
}

.form_footer p {
    font-size: 1.1rem;
    font-weight: 500;
}

.form_footer p a {
    color: #596D48;
    text-decoration: none;
}