/* Login Page Styles */
/* < 100 regels conform project-standards.md */

.login-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 40px 30px;
    text-align: center;
}

.login-card h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2rem;
}

.login-card p {
    color: #666;
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.login-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.test-credentials {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-align: left;
    font-size: 0.9rem;
}

.test-credentials h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--primary-color);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .login-container {
        padding: 10px;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .login-card h1 {
        font-size: 1.5rem;
    }
}