:root{
    --bs-link-color: #01D789;
    --bs-link-color-rgb: 1, 215, 137;
    --bs-link-hover-color: #01b171;
    --bs-link-hover-color-rgb: 1, 177, 113;
}

.login{
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    color: #fff;
}

.login-left{
    flex: 1 1 100%;
    background-color: #02201D;
    background-image: url('../img/login_back.png');
    background-size: cover;
    background-position: center bottom;
    padding: 3.75rem 3.75rem 3.75rem 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.intro{
    max-width: 35.625rem;
    margin: 3.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
.intro h1{
    font-size: 2.6875rem;
    margin-bottom: 1.25rem;
}
.intro h1 span{
    color: var(--primary-color);
}
.intro p{
    text-align: justify;
    font-size: 1.125rem;
}
.intro .btn{
    font-weight: 600;
}

.login-right{
    flex: 1 1 100%;
    max-width: 600px;
    background: #010202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form{
    width: 100%;
    max-width: 23.375rem;
    padding: 2.75rem 2rem;
    background: #032220;
    border-radius: 1.25rem;
    margin: 3.75rem auto;
}
.login-form h2{
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
}

.login-form .form-control {
    --bs-body-bg: #032220;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    /*height: calc(2.25rem + calc(var(--bs-border-width) * 2));
    min-height: calc(2.25rem + calc(var(--bs-border-width) * 2));*/
}
.login-form .form-floating{
    --bs-body-bg: #12161F;
}
.login-form .form-floating > label{
    display: flex;
    align-items: center;
}
.login-form .form-floating > label .fas{
    color: var(--primary-color);
}

.login-form .form-floating > .form-control:focus ~ label,
.login-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.login-form .form-floating > .form-control-plaintext ~ label,
.login-form .form-floating > .form-select ~ label {
    color: #fff;
    font-weight: 100;
    background: transparent;
}
.login-form .form-floating > .form-control:focus ~ label .fas,
.login-form .form-floating > .form-control:not(:placeholder-shown) ~ label .fas,
.login-form .form-floating > .form-control-plaintext ~ label .fas,
.login-form .form-floating > .form-select ~ label .fas{
    opacity: 0.5;
}

.login-form .view-password{
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    z-index: 2;
    cursor: pointer;
}

.login-form .text-legal{
    font-size: 0.625rem;
}


@media (max-width: 1199px) {
    .login-left {
        padding-left: 3.75rem;
    }
}

@media (max-width: 991px) {
    .login {
        flex-direction: column;
    }
    .login-right{
        max-width: unset;
    }
}

@media (max-width: 767px) {

}

@media (max-width: 577px) {
    .login-left {
        padding: 2rem 2rem;
    }
}
