/* ============================================
    PALETA INSTITUCIONAL UICM
    Verde: #0F4229
    Oro:   #D4AF37
    Gris:  #F5F6FA
    Oscuro Login: #0D1B2A
============================================ */

/* ================= FONDO GENERAL LOGIN ================= */
.login-body {
    background: #0F4229;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
}

/* ================= TARJETA LOGIN ================= */
.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* ================= LOGO ================= */
.login-logo {
    width: 95px;
    height: auto;
    margin-bottom: 10px;
}

/* ================= TEXTOS LOGIN ================= */
.login-title {
    font-size: 1.4rem;
    color: #0F4229;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #415a77;
    margin-bottom: 25px;
}

/* ================= INPUTS ================= */
.login-input {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #cfd8dc;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.login-input:focus {
    border-color: #0F4229;
    box-shadow: 0 0 5px rgba(15, 66, 41, 0.4);
    outline: none;
}

/* ================= BOTÓN LOGIN ================= */
.login-btn {
    background: #0F4229;
    color: white;
    padding: 10px;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.login-btn:hover {
    background: #1f8051;
    color: white;
    font-size: 1rem;
}

/* ================= OLVIDÉ CONTRASEÑA ================= */
.forgot-link {
    font-size: 0.9rem;
    color: #0F4229;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.forgot-link:hover {
    text-decoration: underline;
}
