/* ==========================================================================
   HOJA DE ESTILOS - INICIO DE SESIÓN (GOVERNANCE SAS)
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Sincronizado con style.css */
}

body {
    /* Fondo con gradiente oscuro simulando la sobriedad del sitio web oficial */
    background: linear-gradient(135deg, #061c43 0%, #0d2c61 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

/* Estilo del texto del logo en caso de que no cargue la imagen o para acompañarla */
.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #0d2c61;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.brand-text span {
    color: #108aef; /* Detalle celeste del isotipo */
}

.login-container h2 {
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    color: #333333;
    background-color: #f9f9f9;
}

/* Efecto Focus alineado a la paleta azul */
.input-group input:focus {
    border-color: #0d2c61;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 44, 97, 0.1);
}

/* Botón de envío usando el verde institucional exacto del portal */
.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1c843c; /* Verde de la plataforma */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(28, 132, 60, 0.2);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #15662e;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Enlaces secundarios o pie de tarjeta */
.login-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #666666;
}

.login-footer a {
    color: #0d2c61;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}