/* Estilos para el modal de login de administrador */

#modalLoginAdmin .modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#modalLoginAdmin .modal-header {
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
}

#modalLoginAdmin .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

#modalLoginAdmin .modal-body {
    padding: 1.5rem;
}

#modalLoginAdmin .form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #212529 !important;
}

#modalLoginAdmin .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    color: #212529 !important;
    background-color: #ffffff !important;
}

#modalLoginAdmin .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    color: #212529 !important;
    background-color: #ffffff !important;
}

#modalLoginAdmin .form-control::placeholder {
    color: #6c757d !important;
}

#modalLoginAdmin .modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

#modalLoginAdmin .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Asegurar que el texto sea visible */
#modalLoginAdmin * {
    color: inherit;
}

#modalLoginAdmin .text-dark {
    color: #212529 !important;
}

#modalLoginAdmin .text-white {
    color: #ffffff !important;
}

/* Estilos específicos para el input de contraseña */
#modalLoginAdmin #adminPassword {
    color: #212529 !important;
    background-color: #ffffff !important;
    border: 2px solid #ced4da !important;
}

#modalLoginAdmin #adminPassword:focus {
    color: #212529 !important;
    background-color: #ffffff !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

#modalLoginAdmin #adminPassword::placeholder {
    color: #6c757d !important;
    opacity: 1;
}

/* Asegurar que el texto sea visible en todos los estados */
#modalLoginAdmin input[type="password"] {
    color: #212529 !important;
    background-color: #ffffff !important;
}

#modalLoginAdmin input[type="password"]:focus {
    color: #212529 !important;
    background-color: #ffffff !important;
}
