/* ========================================
   Register 页面 - 简洁白色主题
   ======================================== */

.register-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 主体卡片容器 */
.register-container-wrapper {
    position: relative;
    z-index: 1;
    width: 960px;
    min-height: 580px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    display: flex;
    overflow: hidden;
}

/* ==========================================
   左侧品牌区域
   ========================================== */
.reg-brand-area {
    width: 360px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    box-sizing: border-box;
    position: relative;
}

.reg-brand-area .brand-slogan {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.reg-brand-area .brand-sub {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    letter-spacing: 1px;
}

.reg-brand-area .brand-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    margin-bottom: 28px;
}

/* ==========================================
   右侧表单区域
   ========================================== */
.reg-form-area {
    flex: 1;
    padding: 50px 55px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-form-area .page_title {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reg-form-area .page_title .title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reg-form-area .page_title .logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.reg-form-area .page_title .bigtitle {
    font-size: 26px;
    color: #333;
    font-weight: 700;
}

.reg-form-area .page_title .tologin {
    font-size: 14px;
    color: #FF9A4D;
    text-decoration: none;
    transition: color 0.2s;
}

.reg-form-area .page_title .tologin:hover {
    color: #FF7200;
    text-decoration: underline;
}

/* 表单列表 */
.reg-form-area .list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reg-form-area .fc-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.reg-form-area .fc-list .fcl_title {
    width: 100px;
    font-size: 14px;
    color: #555;
    line-height: 48px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 12px;
}

.reg-form-area .fc-list .light_title {
    color: #999;
}

/* 输入框容器 */
.reg-form-area .fcl_container {
    flex: 1;
    position: relative;
}

.reg-form-area .fcl_container input[type="text"],
.reg-form-area .fcl_container input[type="password"],
.reg-form-area .fcl_container input[type="email"] {
    width: 100%;
    height: 48px;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.reg-form-area .fcl_container input::placeholder {
    color: #bbb;
}

.reg-form-area .fcl_container input:focus {
    border-color: #FF9A4D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 154, 77, 0.15);
}

/* 错误提示 */
.reg-form-area .errmsg {
    font-size: 12px;
    color: #f56c6c;
    margin-top: 4px;
    display: none;
}

/* 验证码框 */
.reg-form-area .verify-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.reg-form-area .verify-box input {
    flex: 1;
}

/* 用户协议 */
.reg-form-area .setdefault {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 20px 112px;
    font-size: 13px;
    color: #888;
}

.reg-form-area .setdefault a {
    color: #FF9A4D;
    text-decoration: none;
}

.reg-form-area .setdefault a:hover {
    text-decoration: underline;
}

/* 注册按钮 */
.reg-form-area .button {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9A4D 100%);
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.28);
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
    margin-top: 8px;
}

.reg-form-area .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.36);
    opacity: 0.93;
}

/* 错误提示整体 */
.reg-form-area .font-red {
    text-align: center;
    margin-bottom: 10px;
}

/* ==========================================
   底部联系浮动栏
   ========================================== */
.reg-contact-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reg-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px 0 0 8px;
    transition: width 0.2s;
}

.reg-contact-bar a:hover {
    width: 56px;
}

.reg-contact-bar .cb-facebook { background: #1877F2; }
.reg-contact-bar .cb-line { background: #06c755; }
.reg-contact-bar .cb-phone { background: #FF8833; }
.reg-contact-bar .cb-top { background: #FF7722; }
