.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-form .logo {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.login-form h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.login-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logout-link {
    color: #dc3545;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #dc3545;
    border-radius: 5px;
    transition: all 0.3s;
}

.logout-link:hover {
    background: #dc3545;
    color: white;
}