
/* IMPORTS
 ____________________________ */
@import url('reset.css');
@import url('cards.css');
@import url('forms.css');
@import url('fonts.css');
@import url('errors.css');
@import url('sucess.css');
@import url('ie.css');




/* BASE
____________________________ */
:root {
    font-size: 16px;
}

*{
    font-family: 'Klavika' !important;
}


body {
    font-size: 1rem;
    line-height: 1.4;
}

body#login {
    background-color: #FFC510;
    padding: 0;
    position: relative;
}

body#login .container-flex {
    display: flex;  
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    min-height: 100vh;}
    body#login .container-img,
    body#login .container-form{
        width: 50%;
        min-width: 50%;
        overflow: hidden;
    }
    body#login .container-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body#login .container-form{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: var(--primary-color);
        padding: 90px 104px 20px;}
        body#login .container-form img.logo{
            width: 120px;
            height: auto;
            object-fit: contain;
        }
        body#login .title{
            /* margin-top: 64px; */
            color: #3C3C3C;
            font-size: 52px;
            line-height: 58.4px;
        }
        body#login form{
            margin-top: 64px;
            width: 400px;
        }



.footer .footer_links{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0;
}

.footer .version-info,
.footer a {
    font-size: 14px;
    color: #3C3C3C;
    text-decoration: underline;
}
.footer a:hover {
    cursor: pointer;
    opacity: 0.8;
}

@-webkit-keyframes fadeIn {
    from {
        -webkit-transform: translateY(48px);
        -moz-transform: translateY(48px);
        -ms-transform: translateY(48px);
        -o-transform: translateY(48px);
        transform: translateY(48px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        -webkit-transform: translateY(48px);
        -moz-transform: translateY(48px);
        -ms-transform: translateY(48px);
        -o-transform: translateY(48px);
        transform: translateY(48px);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}