/* ======================================= */
/*           ESTILOS LOGIN                 */
/* ======================================= */

body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #0F4C6E, #2C8BB8);
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0F4C6E;
}

.logo-login {
    max-width: 120px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.btn-primary {
    background-color: #2C8BB8;
    border: none;
    border-radius: 10px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0F4C6E;
}

.input-group-text {
    cursor: pointer;
    background: #f1f3f5;
    border: none;
}

.extra-links {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.extra-links a {
    text-decoration: none;
    color: #2C8BB8;
}

.extra-links a:hover {
    text-decoration: underline;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 10px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #0d6efd;
}