.login-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container form {
    margin-bottom: 1rem;
}

.uk-form-label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.uk-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.8rem;
    transition: border-color 0.3s ease;
}

.uk-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.uk-button-primary {
    background-color: #3498db;
    color: white;
    font-weight: bold;
    padding: 0.8rem;
    transition: background-color 0.3s ease;
}

.uk-button-primary:hover {
    background-color: #2980b9;
}

.uk-link-text {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.uk-link-text:hover {
    color: #34495e;
    text-decoration: underline;
} 