/* Estilos específicos para la pantalla de Login */
.login-page {
    background-color: #f9f9f9;
    min-height: 80vh; /* Para que ocupe espacio entre header y footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-title {
    margin-top: 0;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fafafa;
    box-sizing: border-box; /* Importante para que no se salga */
}

.form-control:focus {
    border-color: #6AA8D5;
    background: #fff;
    outline: none;
}

.btn-login-submit {
    width: 100%;
    padding: 12px;
    background-color: #6AA8D5;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-login-submit:hover {
    background-color: #568bb5;
}

.login-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.link-action {
    color: #6AA8D5;
    text-decoration: none;
    font-weight: 600;
}
.link-action:hover { text-decoration: underline; }

.error-msg {
    background-color: #fce4e4;
    color: #cc0000;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    display: none; /* Oculto por defecto */
}