/* 尚品购（ShangPinGou） - 会员注册与表单验证专用样式表 (register.css) */

.register-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
    padding: 40px 0;
}

.register-card {
    width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.register-header .logo-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e4393c, #c02d30);
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(228, 57, 60, 0.3);
}

.register-header h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333333;
}

.register-header p {
    font-size: 13px;
    color: #888888;
    margin-top: 4px;
}

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

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

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.input-wrap input:focus {
    border-color: #e4393c;
    box-shadow: 0 0 0 3px rgba(228, 57, 60, 0.15);
}

/* 验证状态提示 */
.msg-tip {
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.msg-tip.error {
    color: #e4393c;
}

.msg-tip.success {
    color: #2e7d32;
    font-weight: bold;
}

/* 提交按钮 */
.btn-submit {
    width: 100%;
    height: 45px;
    background-color: #e4393c;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #c02d30;
}

.register-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666666;
}

.register-footer-link a {
    color: #e4393c;
    font-weight: bold;
}
