/* app/static/css/pages/login.css */

.login-card {
    max-width: 450px;
    margin: 60px auto;
    padding: 40px;
}

.btn-sso {
    background: #3498db;
    color: white;
    border: none;
}

.btn-sso:hover:not(:disabled) {
    background: #2980b9;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.login-divider span {
    padding: 0 15px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.back-link {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
    text-decoration: none;
}