/* 认证页面 */
.auth-page {
    padding: 60px 0;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
}

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

.auth-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
}

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

.forgot-password {
    text-align: right;
    margin-top: 5px;
}

.forgot-password a {
    font-size: 13px;
    color: #666;
}

.forgot-password a:hover {
    color: #1890ff;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #1890ff;
}

/* 社交登录 */
.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login p {
    position: relative;
    margin-bottom: 20px;
    color: #999;
    font-size: 14px;
}

.social-login p:before,
.social-login p:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #eee;
}

.social-login p:before {
    left: 0;
}

.social-login p:after {
    right: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.btn-social .icon {
    margin-right: 5px;
    font-size: 18px;
}

.btn-social.wechat {
    background-color: #07C160;
    color: #fff;
}

.btn-social.qq {
    background-color: #12B7F5;
    color: #fff;
}

/* 验证码 */
.verification-code {
    display: flex;
    gap: 10px;
}

.verification-code input {
    flex: 1;
}

/* 条款 */
.terms {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.terms input {
    margin-right: 8px;
    margin-top: 3px;
}

.terms label {
    font-size: 14px;
}

.terms a {
    color: #1890ff;
}