/* 全屏容器 */
.login-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;
}

/* 登录区域 */
.login-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;
}

/* 登录框样式 */
.login-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.form-group {
    margin-bottom: 30px;
}

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

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

.form-input:focus {
    border-color: #aafc89;
    background: rgba(170,252,137,0.05);
    outline: none;
}

.login-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;
}

.login-btn:hover {
    transform: translateY(-2px);
}

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

.auth-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

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

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

/* 响应式布局 */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .video-section {
        height: 40vh;
    }

    .login-section {
        width: 100%;
        min-width: 100%;
        height: 60vh;
        padding: 30px 20px;
        box-shadow: none;
    }

    .video-overlay {
        /*background: linear-gradient(0deg, rgba(14,15,15,1) 20%, rgba(14,15,15,0) 100%);*/
    }
}

@media (max-width: 480px) {
    .login-title {
        font-size: 26px;
    }
    
    .auth-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}