/* =========================================
   CONTENEDOR PRINCIPAL DEL LOGIN
   ========================================= */
.login-wrapper {
    max-width: 450px; /* Restringe el ancho para que no se vea estirado en pantallas grandes */
    margin: 0 auto;   /* Centra el formulario */
    padding: 20px 0;
    font-family: 'Open Sans', Arial, sans-serif;
}

.login-subtitle {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 25px;
}

/* =========================================
   ESTILOS DEL FORMULARIO (CRISPY FORMS)
   ========================================= */
.login-wrapper label {
    font-weight: 600 !important; /* Bajamos el grosor de 800 a 600 para que se vea más fina */
    color: #1f2937 !important;
    font-size: 0.95rem !important; /* Un poco más pequeña y elegante */
    margin-bottom: 8px !important;
    display: block !important;
}

/* Asterisco rojo obligatorio */
.login-wrapper .asteriskField {
    color: #b91c1c !important; /* Un rojo un poco más sobrio */
    margin-left: 4px !important;
    font-weight: 700 !important;
}

/* Campos de texto (Gris claro) */
.login-wrapper .form-control {
    background-color: #f3f4f6 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    height: auto !important;
    font-size: 0.95rem !important;
    color: #1f2937 !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
    transition: all 0.2s ease !important;
}

.login-wrapper .form-control:focus {
    border-color: #0d6efd !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1) !important;
    outline: none !important;
}

/* =========================================
   BOTÓN Y ENLACE
   ========================================= */
.btn-login {
    background-color: #0056b3 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    width: 100% !important;
    transition: background-color 0.2s !important;
    margin-bottom: 15px !important;
    cursor: pointer;
}