/* ============================================
   Portal CFDIs GEMECA - Estilos personalizados
   ============================================ */

/* Fondo de las páginas de login/recuperación */
body.login-page {
    background: #e9ecef;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor central del formulario */
.login-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
}

/* Encabezado azul con logo */
.login-header {
    background: #0d6efd;
    color: white;
}

.login-header img {
    filter: brightness(0) invert(1); /* Logo en blanco */
}

/* Tarjeta del formulario */
.login-form.card {
    border-radius: 0 0 0.5rem 0.5rem !important;
}

/* Campos de entrada con icono */
.input-group-text {
    background: #f8f9fa;
    border-right: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* Ajustes responsivos */
@media (max-width: 576px) {
    .login-container {
        max-width: 100%;
        padding: 0 15px;
    }
}