.auth-page-wrapper {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
}

/* 通知栏 */
.auth-notice-bar {
    background: #f5f5f5;
    padding: 12px 15px;
    text-align: center;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.auth-notice-icon {
    font-style: normal;
    font-weight: bold;
    margin-right: 8px;
}

/* 表单容器 */
.auth-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.auth-form-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* 表单组 */
.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.auth-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e3e7;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
    background: #f8fafc;
    box-sizing: border-box;
}

.auth-form-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
    outline: none;
    background: #fff;
}

/* 验证码组 */
.captcha-input-group {
    display: flex;
    gap: 10px;
}

.captcha-input {
    flex: 1;
    min-width: 0;
}

.auth-captcha-btn {
    padding: 0 15px;
    background: #f0f2f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    /*font-size: 14px;*/
    height: 46px;
}

.auth-captcha-btn:hover {
    background: #e0e3e7;
}

.auth-captcha-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 提交按钮 */
.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 15px;
}

.auth-submit-btn:hover {
    background: #2980b9;
}

/* 错误提示 */
.auth-form-error {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    color: #e74c3c;
    align-items: center;
    padding: 8px 12px;
    background: #fef2f2;
    border-radius: 4px;
}

.auth-error-icon {
    font-style: normal;
    font-weight: bold;
    margin-right: 6px;
}

/* 响应式设计 */
@media (max-width: 576px) {
    .auth-page-wrapper {
        padding: 15px;
        margin: 15px auto;
    }
    
    .auth-form-container {
        padding: 25px 20px;
    }
    
    .auth-form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .captcha-input-group {
        flex-direction: column;
    }
    
    .auth-captcha-btn {
        width: 100%;
        padding: 12px;
        margin-top: 8px;
    }
}