/* Estilos generales del cuerpo de la página */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #001f3f; /* Fallback color */
    background-image: linear-gradient(to top, #001f3f, #003366);
}

/* Tarjeta de inicio de sesión */
.login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    body {
        padding: 0 1rem; /* Evita que la tarjeta toque los bordes en móviles */
    }
    .login-card {
        padding: 1.5rem;
    }
    .login-header h3 {
        font-size: 1.5rem; /* Reduce el tamaño del título en móviles */
    }
}

/* Encabezado de la tarjeta */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.login-header h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header .text-muted {
    color: #6c757d !important;
    font-size: 0.9rem;
}

/* Estilos de los botones */
.btn-primary-submit {
    background-color: #0056b3; /* Un azul primario más oscuro */
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-submit:hover {
    background-color: #004494; /* Un poco más oscuro al pasar el mouse */
}

.btn-secondary-switch {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #343a40;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-switch:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}