/* ============================================================
 * cany_dianle 注册页特例样式
 * 主要规范继承自 login.css
 * 此处只覆盖注册页的独有差异:
 *   - 表单内容多, padding 调整 + 滚动
 *   - 自定义字段表单输入风格
 *   - 业务员勾选 / 协议勾选 间距
 * ============================================================ */

.cany-regist-shell-form {
    padding: 56px 60px;
    justify-content: flex-start;
    overflow-y: auto;
}

.cany-regist-shell-form::-webkit-scrollbar {
    width: 6px;
}
.cany-regist-shell-form::-webkit-scrollbar-thumb {
    background: rgba(102, 135, 251, 0.2);
    border-radius: 3px;
}
.cany-regist-shell-form::-webkit-scrollbar-track {
    background: transparent;
}

/* 注册页字段间距适当压缩 */
.cany-regist-shell-form .cany-fields {
    gap: 14px;
}

/* 业务员勾选行 */
.cany-sale-check {
    margin-top: 8px;
    margin-left: 0;
}

/* 注册页 协议勾选 间距 */
#regist > .cany-auth-shell .cany-shell-form > .cany-shell-form-inner > .cany-agreement-check {
    margin-top: 16px;
    margin-left: 0;
}

/* 自定义字段表单 - 输入框与主表单输入风格保持一致 */
.cany-custom-form .el-input__inner,
.cany-custom-form .el-textarea__inner {
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 52px;
    line-height: 52px;
    padding: 0 20px;
    font-size: 14px;
    box-sizing: border-box;
}
.cany-custom-form .el-textarea__inner {
    border-radius: var(--radius-md);
    height: auto;
    line-height: 1.5;
    padding: 12px 20px;
    min-height: 80px;
}
.cany-custom-form .el-input__inner:focus,
.cany-custom-form .el-textarea__inner:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(102, 135, 251, 0.12);
}

/* 注册按钮区与协议条款间距 */
#regist .cany-actions {
    margin-top: 20px;
}

/* 响应式 */
@media (max-width: 1199px) {
    .cany-regist-shell-form {
        padding: 200px 24px 32px;
    }
}
