/**
 * 注册页面专用样式
 */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: var(--card-bg);
    color: var(--text-color);
}

.btn-auth {
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}
