/**
 * 登录注册页面样式 - 科技感
 */

.auth-page {
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.auth-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.captcha-group {
    display: flex;
    gap: 10px;
}

.captcha-group input {
    flex: 1;
}

.captcha-img {
    height: 48px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.captcha-img:hover {
    border-color: var(--primary);
}

.agreement {
    margin: 20px 0;
}

.agreement .checkbox-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.agreement a {
    color: var(--primary);
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.auth-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-links a:hover {
    color: var(--primary);
}

.required {
    color: #ff6b7a;
}

/* 封禁提示样式 */
.alert-error {
    line-height: 1.8;
}

.alert-error strong {
    color: #ff6b7a;
}

@media (max-width: 480px) {
    .auth-box {
        padding: 30px 20px;
    }
}
