/* 注册页面专用样式 */
.register-container {
    width: 550px;
    overflow: hidden;
}

.register-form-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.5px);
}

.register-title {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-weight: normal;
}

/* 注册类型选择 */
.register-type-label {
    display: block;
    text-align: center;
    padding: 10px;
    background: linear-gradient(90deg, #FEAB44 0%, #E1330C 100%);
    color: #fff;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.register-type-label.selected {
    font-weight: bold;
}

.register-type-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.register-type-label.selected .radio-custom:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 上传区域样式 */
.upload-area {
    
}

.upload-preview {
    width: 100%;
    height: 200px;
    border: 1px dashed #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.upload-hint {
    color: #999;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.upload-label {
    font-size: 12px;
    color: #333;
    text-align: center;
    margin-top: 8px;
    padding: 15px 5px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: -1; /* 隐藏文件输入框，但保持功能 */
}

/* 提交按钮 */
.btn-register {
    width: 100%;
    height: 44px;
    background: linear-gradient(90deg, #FEAB44 0%, #E1330C 100%);
    border: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 0;
}

.btn-register:hover {
    background: linear-gradient(90deg, #E1330C 0%, #FEAB44 100%);
    color: #FFFFFF;
}

/* 返回登录链接 */
.return-login {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    display: block;
    text-align: center;
    margin:0 auto;
}

.return-login:hover {
    color: #FEAB44;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .register-container {
        width: 95%;
        max-width: 550px;
    }
    
    .row .col-md-6 {
        margin-bottom: 10px;
    }
}