
body {
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
}
.btn-outline-biass-2 {
    color: var(--color-biass-2);
    border-color: var(--color-biass-2);
}

    .btn-outline-biass-2:hover {
        background-color: var(--color-biass-2);
        color: white !important;
    }

/* ======== Header Superior ======== */
.top-bar {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 30px;
}

    .top-bar a {
        text-decoration: none;
        color: #000;
        font-weight: 600;
        margin-right: 20px;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

        .top-bar a:hover {
            color: blue;
        }

    .top-bar i {
        margin-right: 6px;
        vertical-align: middle;
    }
/* ================ */

.card-login {
    max-width: 1100px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-login__image {
    background-color: var(--color-biass-2) !important;
}

    .card-login__image img {
        width: 200px;
    }

.right-card {
    background-color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .right-card h3,
    .right-card h6 {
        text-align: left;
    }

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background-color: #d9d9d9;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #000;
        color: #fff;
    }

.forgot-password {
    font-size: 0.9rem;
    color: #0d6efd;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

@media (max-width: 767px) {
    .right-card {
        padding: 50px 30px;
    }

    .card-login__image img {
        width: 150px;
    }
}
.icon-circle-wrapper {
    display: flex;
    justify-content: center;
}

.icon-circle-outer {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #D7E3F4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-inner {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background-color: #B1CBEF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.modal-content {
    border-radius: 1rem;
}


.form-control.is-valid,
.form-control.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}


.btn-primary {
    background-color: #d9d9d9; 
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

    
    .btn-primary:hover {
        background-color: var(--color-biass-2); 
        color: #fff; 
        transform: translateY(-2px); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    }

    
    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }

.bg-biass-2:hover {
    background-color: #034679 !important; 
    color: #fff !important;
    transition: all 0.3s ease;
}


.form-control,
select {
    border-radius: 5px;
    border: 1.5px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:hover,
    select:hover {
        border-color: #0474A0;
       
        cursor: text !important;
    }

    .form-control:focus,
    select:focus {
        outline: none !important;
        border-color: #0474A0;
        box-shadow: 0 0 0 0.25rem rgba(4, 116, 160, 0.5);
        
        cursor: text;
    }
