* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
                url('../image/login_bg.jpg') no-repeat center center fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}






.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-container {
    flex: 1;
    padding: 40px;
    background: #ffffff;
}

.info-panel {
    flex: 1;
    padding: 40px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
				url('../image/login_bg.jpg') no-repeat center center fixed;
    color: #333;
	z-index:999;
}

.form-box {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-box.active {
    display: block;
}

.red1{
	color:#D9001B;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.input-group {
    margin-bottom: 10px;
	margin-top:-10px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

.verification-group {
    position: relative;
}

.verification-input {
    display: flex;
    gap: 10px;
}

.verification-input input {
    flex: 1;
}

.btn-send-code {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-send-code:hover:not(:disabled) {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.btn-send-code:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.countdown {
    font-size: 12px;
    color: #666;
    margin-top: -15px;
    text-align: right;
}



  /* 企业字段样式 */
        .enterprise-section {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #f0f7ff;
            border-radius: 8px;
            border-left: 4px solid #4a90e2;
        }
        
        .enterprise-section h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .enterprise-section h3 i {
            margin-right: 8px;
            color: #4a90e2;
        }
        
        .optional-badge {
            background-color: #6c757d;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 5px;
        }
        
        .required-badge {
            background-color: #e74c3c;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 5px;
        }

.enterprise-option-group {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    padding: 5px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}
/* 找回密码链接样式 */
        .forgot-password-link {
            text-align: right;
            margin-top: -20px;
            margin-bottom: 20px;
        }
        
        .forgot-password-link a {
            color: #4a90e2;
            text-decoration: none;
            font-size: 14px;
        }
        
        .forgot-password-link a:hover {
            text-decoration: underline;
        }
        
        /* 找回密码表单样式 */
        .reset-password-form {
            display: none;
        }
        
        .reset-password-form.active {
            display: block;
        }
        
        /* 步骤指示器 */
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-indicator::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #e0e0e0;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 8px;
            border: 3px solid white;
        }
        
        .step.active .step-circle {
            background-color: #4a90e2;
            color: white;
        }
        
        .step.completed .step-circle {
            background-color: #4a90e2;
            color: white;
        }
        
        .step-text {
            font-size: 12px;
            color: #666;
            text-align: center;
        }
        
        .step.active .step-text {
            color: #4a90e2;
            font-weight: 500;
        }
        
        /* 按钮组样式 */
        .button-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }








.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #0D6EFD 30%, #1c45b7 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
}
.form-footer1 {
    margin-top: 10px;
  
    color: #666;
}

.form-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}


/* 信息面板样式 */
.logo-content{
	align-items:center;
	
}

.logo {
    text-align: center;
	margin-top:50px;
    
	
}

.navbar-logo{
	border-radius:20px;
}
.logo img {
    width:150px;
	height:150px;
	margin-bottom: -30px;
}
.logo i {
    font-size: 60px;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 40px;
    font-weight: 600;
}

.features {
    margin-bottom: 10px;
	margin-top:30px;
	text-align:center;
}

.features h3, .instructions h3 {
    font-size: 20px;
    margin-bottom: 20px;
   
    align-items: center;
    gap: 10px;
}

.features ul {
    list-style: none;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li i {
    color: #2ecc71;
}

.instructions p {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.instructions p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-size: 20px;
}

/* 消息框样式 */
.message-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.message-box.show {
    transform: translateX(0);
}

.message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .info-panel {
        order: -1;
    }
    
    .form-container, .info-panel {
        padding: 30px 20px;
    }
	
	.features {
	  display: none;
	}
}


/* 只读字段样式 */
.readonly-field {
    background-color: #f8f9fa !important;
    cursor: not-allowed;
}

/* 禁用的单选按钮样式 */
.radio-label.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.radio-label.disabled input[type="radio"] {
    cursor: not-allowed;
}

/* 邀请提示信息 */
#inviteHelpText {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}