.separator {
    display: flex;
    align-items: center;
}

.separator h2 {
    padding: 0 2rem; /* creates the space */
}

.separator .line {
    flex: 1;
    height: 1px;
    background-color: #333333;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #33B992;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #33B992;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #33B992;
}

.full-img {
    background-image: url("/assets/img/covers/login-cover.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-bold-700{
    font-weight: 700;
}

.text-bold-900{
    font-weight: 900;
}

.text-bold-500{
    font-weight: 500;
}

.border-radius-e{
    border-top-right-radius: 50rem !important; 
    border-bottom-right-radius: 50rem !important; 
}

.input-padding {
    padding: 0.9rem;
}

.bg-light-green{
    background-color: #E0F5EF;
}

.border-radius-s{
    border-top-left-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, 
input:-internal-autofill-selected {
    background-color: #E0F5EF !important;
    background-clip: border-box !important;
}

.text-danger {
    font-size: 11px;
    display: block;
    margin-left: 1rem;
    max-width: 250px;
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
    color: #fff !important;
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    box-shadow: none;
}