/* Login Page Styles */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    color: #667eea;
    font-weight: bold;
}

.btn-login {
    background: #667eea;
    border: none;
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.btn-login:hover {
    background: #5568d3;
}