@font-face {
    font-family: 'Glacial Indifference';
    src: url('../../assets/GlacialIndifference-Regular.otf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100dvh;
    font-family: 'Glacial Indifference', sans-serif;
    background: white;
    width: 100dvw;
    overflow-y: hidden;
    overflow-x: hidden;

}

span {
    margin-left: 46%;
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    /* margin: 10% 0 10% 45%; */

}

.mainLogin {
    display: flex;
    height: 100dvh;
    width: 100dvw;
    justify-content: center;
    align-items: center;
}

.login-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #FFF0DA;
    padding: 30px;
    border-radius: 20px;
    width: 35dvw;
    max-width: none;
    height: 20dvh;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 40dvw;
    align-items: center;
    padding-right: 2dvw;
    padding-left: 2dvw;
    height: 20dvh;
    justify-content: center;
}

.header {
    width: 72%;
    margin-left: -1%;
    /* text-align: center; */
    /* margin-right: 49px; */

}

.logo {
    width: 110%;
    height: 110%;
    /* margin-right: 100px; */

}

.input_field, .login-button {
    width: 100%;
    font-size: 16px;
}

.input_field2 {
    padding: 2dvh;
    border-radius: 25px;
    /* margin-bottom: 10%; */
    border: 0px solid #ddd;
    padding-left: 10%;
    font-family: 'Glacial Indifference', sans-serif;
    color: black;
    height: 1dvh;
    width: 15dvw;
    margin-top: 2%;
    /* margin-bottom: 2dvh; */
    margin-left: 5%;
    /* align-self: center; */

}

.input_field {
    padding: 2dvh;
    border-radius: 25px;
    /* margin-bottom: 10%; */
    border: 0px solid #ddd;
    padding-left: 10%;
    font-family: 'Glacial Indifference', sans-serif;
    color: black;
    height: 1dvh;
    width: 15dvw;
    margin-bottom: 2dvh;
    margin-left: 5%;
    /* align-self: center; */

}

.input_field:hover, .input_field:focus {
    border-color: #000138;
    outline: none;
}

.login-button {
    color: black;
    border: none;
    background-color: #FFF0DA;
    cursor: pointer;
    text-align: center;
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: bold;
    height: 1.8dvh;
}

.login-button:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

#email {
    position: relative;
}

.input_field::placeholder, .input_field2::placeholder {
    display: contents;
    text-align: center;
    color: black;
    font-size: 16px;
}

@media (max-width: 600px) {
    body, html {
        margin: 0;
        padding: 0;
        height: 100dvh;
        font-family: 'Glacial Indifference', sans-serif;
        background: white;
        width: 100dvw;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .login-div {
        display: flex;
        flex-direction: column;
        background-color: #FFF0DA;
        padding: 0;
        width: 100dvw;
        height: 100dvh;
        border-radius: 0;
        justify-content: flex-start;
        align-items: center;
    }

    .logo {
        width: 65dvw;
        object-fit: contain;
        margin-top: 4dvh;
    }

    .login-button {
        width: 100%;
        font-size: 5vw;
    }

    .header {
        text-align: center; /* Alignement Ã  gauche pour les Ã©crans plus larges */
    }
    .form-container {
        display: flex;
        flex-direction: column;
        width: 100dvw;
        margin-top: 4dvh;
        align-items: center;
        padding-right: 0;
    }
    .input_field {
        width: 60dvw;
        font-size: 5vw;
        height: 2dvh;
        margin-bottom: 3dvh;
        border-radius: 40px;
    }
}