/* Estilos para el login universitario */
.login-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
}
.login-container {
    background: #fff;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(13, 71, 161, 0.10);
    min-width: 340px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-logo {
    max-width: 120px;
    margin-bottom: 1.5rem;
}
.login-title {
    color: #0d47a1;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}
.login-subtitle {
    color: #1976d2;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.login-form label {
    color: #0d47a1;
    font-weight: 500;
}
.login-form .form-control {
    margin-bottom: 1rem;
}
.login-form .btn-primary {
    background: #1976d2;
    border: none;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0.5rem;
}
.login-form .btn-primary:hover {
    background: #0d47a1;
}
.login-register {
    margin-top: 1rem;
    text-align: center;
}
.login-register a {
    color: #1976d2;
    text-decoration: underline;
    font-weight: 500;
}
