:root{
    --bs-link-color: #66EFE5;
    --bs-link-color-rgb: 102, 239, 229;
    --bs-link-hover-color: #5CD6CC;
    --bs-link-hover-color-rgb: 92, 214, 202;
}

.login{
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    color: #fff;
}

.login-left{
    flex: 1 1 100%;
    background: url('../img/login_back.webp');
    background-size: cover;
    background-position: center bottom;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.intro{
    max-width: 41.5rem;
    padding: 60px;
    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: #66EFE5;
}
.intro p{
    text-align: justify;
    font-size: 1.125rem;
}

.login-right{
    flex: 1 1 100%;
    max-width: 600px;
    background: #12161F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form{
    width: 19rem;
}
.login-form h2{
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
}
.login-form .text-legal{
    font-size: 0.5625rem;
    opacity: 66%;
}

.login-form .form-control {
    --bs-body-bg: #12161F;
    color: #fff;
    border-color: #999B9F;
    /*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: #66EFE5;
}

.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;
}