.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
}

.auth-card h2 {
    margin-bottom: 10px;
    text-align: center;
    color: #333;
    font-size: 28px;
}

.subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-card .form-group {
    margin-bottom: 20px;
}

.auth-card .btn-block {
    margin-top: 20px;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
}

.links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}

.demo-info {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.demo-info p {
    margin: 5px 0;
    font-size: 13px;
    color: #495057;
}

.demo-info strong {
    color: #333;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}