/* 注册容器 */
.register-container {
    display: flex;
    height: 100vh;
    background: #0e0f0f;
}

/* 视频区域 */
.video-section {
    flex: 1;
    position: relative;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(14,15,15,1) 25%, rgba(14,15,15,0) 70%);*/
    z-index: 2;
}

/* 登录区域 */
.register-section {
    width: 50%;
    min-width: 480px;
    height: 100%;
    background: rgba(14,15,15,0.95);
    backdrop-filter: blur(12px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: -20px 0 50px rgba(0,0,0,0.4);
	box-sizing: border-box;
}

/* 标题样式 */
.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-title {
    font-size: 28px;
    background-image: linear-gradient(106deg,#aafc89 0,#00f9e5 44%,#2d60ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    color: #aaa;
    font-size: 15px;
    font-weight: 300;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    background: rgba(0,0,0,0.3);
    border: 2px solid rgba(170,252,137,0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

/* 验证码相关 */
.code-group {
    display: flex;
    gap: 15px;
}

.code-input {
    flex: 1;
}

.get-code-btn {
    width: 130px;
    padding: 16px;
    background: rgba(170,252,137,0.1);
    border: 2px solid rgba(170,252,137,0.3);
    border-radius: 12px;
    color: #aafc89;
    cursor: pointer;
    transition: all 0.3s;
    height:60px;
    overflow: hidden;
}

.get-code-btn:hover:not(.disabled) {
    background: rgba(170,252,137,0.2);
}

.get-code-btn.disabled {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #666;
    cursor: not-allowed;
}

/* 注册按钮 */
.register-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(106deg,#aafc89 0,#00f9e5 44%,#2d60ff 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 15px;
}

/* 底部链接 */
.auth-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.auth-link {
    color: rgba(170,252,137,0.8);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    background: linear-gradient(106deg,#aafc89 0,#00f9e5 44%,#2d60ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-link:hover {
    text-shadow: 0 0 15px rgba(170,252,137,0.3);
    transform: translateY(-1px);
}

/* 装饰线 */
.decor-line {
    height: 1px;
    background: linear-gradient(90deg,transparent,#aafc89,#00f9e5,transparent);
    margin: 30px 0;
    opacity: 0.15;
}


/* 响应式 */
@media (max-width: 480px) {
    .register-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .auth-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .contact {
        flex-direction: column;
        gap: 8px;
    }
}