#kt_login
{
    /* background-image: url(https://afas-crm.com/sys/upload/login_bg.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.auth-wrapper {
    display: inline-block;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 16px 0px rgb(96 129 196 / 23%);
    position: relative;
    overflow: hidden;
    width: 500px;
    max-width: 100%;
    /* min-height: 600px; */
    -webkit-animation: fadeIn .8s ease forwards;
    animation: fadeIn .8s ease forwards;
}

/* .auth-main {
    left: 0;
    width: 50%;
    z-index: 2;
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
} */

.auth-main .form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4em 2.5em;
    height: 100%;
    text-align: center;
}

.logo_web {
    margin-bottom: 30px;
    max-width: 320px;
}

.form .title {
    width: 100%;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.form .subtitle {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    letter-spacing: .5px;
    margin: 0 0 30px;
}

.form .form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form label {
    font-family: "Inter",sans-serif;
    text-align: left;
    font-size: .75rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.form .form-control {
    background-color: #f2f2f2;
    border: none;
    padding: .7em 1em;
    width: 100%;
    color: #5B5B5B;
}

.form .form-control:focus {
    border: 1px solid var(--primary-color);
}

.form .has-danger .form-control {
    border: 1px solid #D91E18;
}

.form .fv-plugins-message-container {
    text-align: left;
}

.form .btn-custom {
    margin: 0;
    background-image: linear-gradient(to right, #FF0A6C 0%, #FF0A6C 51%, #4A3CDB 100%);
    background: rgb(15,41,175);
    background: linear-gradient(34deg, rgba(15,41,175,1) 0%, rgba(84,11,158,1) 49%, rgba(226,9,175,1) 100%);
    color: #fff;
    text-transform: none;
    transition: 0.5s !important;
    background-size: 200% auto;
    padding: 10px 30px;
    font-size: 100%;
    height: 46px;
    line-height: 0;
    border: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.form .btn-custom:hover {
    background-position: right center;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    overflow: hidden;
    z-index: 100;
}

.auth-overlay,
.auth-overlay .overlay-container {
    height: 100%;
    transition: transform .6s ease-in-out;
}

.overlay-container {
    background: url(../img/login-visual.png) center center / cover no-repeat, linear-gradient(to right, rgb(212, 47, 180), rgb(212, 47, 180));
    position: relative;
    left: -100%;
    width: 200%;
    transform: translateX(0);
}

.auth-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.auth-logos img {
    max-width: 200px;
    margin: 0 15px;
}
@media screen and (max-width: 769px) {
    .auth-logos {
        flex-direction: column;
    }
    .auth-logos img {
        max-width: 300px;
        margin: 0 0 15px 0;
    }
}

@media screen and (max-width: 600px) {
    .auth-wrapper {
        width: 80vw;
    }
    .auth-main {
        width: 100%;
    }
    .auth-overlay {
        left: 100%;
    }
}

@media screen and (max-width: 480px) {
    .auth-wrapper {
        width: 90vw;
    }
    .auth-main .form {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}