
/* BASIC */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;900&display=swap');

html {
    background-color: #56baed;
}
  
body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a {
    color: #92badd;
    display:inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display:inline-block;
    margin: 40px 8px 10px 8px; 
    color: #cccccc;
}
    
.sf-toolbar {
    display: none !important;
}

/* STRUCTURE */

.wrapper {
    display: block;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    /* background: url(../images/background-login.png);
    background-size: cover; */
    overflow: hidden;
}

    .wrapper .content-table {
        height: 100%;
        display: table;
        width: 100%;
    }

    .wrapper .content-table-cell {
        display: table-cell;
        vertical-align: middle;
    }


/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

input[type=text], input[type=password]  {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    text-align: center;
    display: inline-block;
    border: none;
    color: #5a489c !important;
    border-radius: 0;
    padding-left: 0;
    border-bottom: 1px solid #5a489c;
    width: 240px;
    background: transparent;
    font-family: 'Nunito', sans-serif !important;
}

input[type=text]:focus, input[type=password]:focus {
    background-color: #fff;
}

input[type=text]:placeholder, input[type=password]:placeholder {
    color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    background-color: #939393;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.fadeIn.fourth:hover {
    background-color: #939393 !important;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after{
    width: 100%;
}

/* OTHERS */

*:focus {
    outline: none;
} 

.adest-logo {
    width: 300px;
    margin-bottom: 0px;
}

.img-login {
    width: 50%;
    height: 100vh;
}

.img-login {
    width: 50%;
    height: 100%;
    text-align: right;
}

.img-login img {
    height: 100vh;
    max-width: 100%;
}

.login-row {
    display: block;
    height: 100vh;
}

.submit-login-btn {
    background-color: #ffffff;
    border: 1px solid #5a489c;
    border-radius: 6px;
    color: #5a489c;
    margin-top: 46px;
    margin-bottom: 15px;
    padding: 7px 15px !important;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Nunito', sans-serif !important;
    width: 240px;
}

.img-login-phone {
    display: none;
    width: 100%;
}

.copyright {
    position: absolute;
    bottom: 10px;
    color: #5a489c;
    text-align: center;
    font-size: 13px;
    padding-left: 25px;
    padding-right: 25px;
    left: 0;
    right: 0;
}

.form-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-error {
    text-align: center;
    margin-top: 10px;
    margin-bottom: -20px;
    color: #d0312d;
}

.content-login-logo {
    width: 100%;
    text-align: center;
}

/* Footer */

.footer {
    margin: 40px 0 30px;
    font-size: 0.9rem;
}

@media only screen and (max-width: 650px){
    .wrapper {
        height: 50vh;
        width: 100%;
        align-items: center;
    }
    .img-login {
        display: none;
        width: 100%;
        height: initial;
    }

    .img-login-phone {
        display: initial;
        height: 50vh;
    }

    .img-login-phone img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .img-login img{
        height: 50vh;
    }

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