@import url('/static/GDS/css/font/RobotoSlab/RobotoSlab.css');
@import url('/static/GDS/css/font/NunitoSans/NunitoSans.css');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Slab:wght@100..900&display=swap');

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

.flex {
    display: flex;
    background-color: #dde9eb;
    align-items: center;
    height: 100%;
}

html {
    background-color: #dde9eb;
}

/* .banderole {
    width: 14rem !important;
    background-color: black;
    height: 100vh;
} */

h2 {
    font-family: "Nunito Sans";
    font-weight: revert;
    font-size: 2rem;
    color: #858796;
    margin-bottom: 20px;
    font-size: 30px;
    color: #64BC9B;
    text-align: center;
}

.container {
    background-color: white;
    border-radius: 40px;
    width: 40%;
    min-width: 400px;
    margin: 0px auto 0px auto;
    height: 250px;
    padding: 40px;

    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-btn {
    margin-top: 20px !important;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background-color: #ffe600;
    color: black;
    cursor: pointer;
}

input[type=text], input[type=password] {
        padding: 5px;
        font-size: 16px;
        border-width: 0px;
        border-color: #CCCCCC;
        background-color: #FFFFFF;
        color: #000000;
        border-style: solid;
        border-radius: 23px;
        box-shadow: 3px 0px 8px rgba(66,66,66,.20);
}

input[type=text]:focus {
    outline:none;
}





form {
    display: flex;
    flex-direction: column;
    width: 100%;

    max-width: 400px;
}


.flex-login {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-login {
    width:100%;
}

.input-login input {
    width:100%;
}

.hideShowPassword-wrapper {
    width: 100%;
}

.input-login:nth-child(2) {
    margin-top: 10px;
}



@media (max-width: 1400px) {
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flex-login {
        flex-direction: column;
    }

    .input-login:nth-child(2) {
        margin-left: 0px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .banderole {
      display: none;
    }

    .flex {
        height: 100vh;
    }
}