/* 登录和注册页面样式 - 杭州危安行科技有限公司 */

/* 页面基础样式 */
.zh_body {
    margin: 0;
    padding: 0;
    background: 
        radial-gradient(ellipse at top, rgba(89, 255, 133, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(89, 255, 133, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #111111 100%);
    min-height: 100vh;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.zh_page_wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 页面头部样式 */
.zh_page_header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.zh_page_header_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(89, 255, 133, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(89, 255, 133, 0.1) 0%, transparent 50%),
        url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.zh_header_overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.zh_breadcrumb_section {
    padding: 80px 0;
    text-align: center;
}

.zh_breadcrumb_content {
    max-width: 800px;
    margin: 0 auto;
}

.zh_page_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #59ff85 0%, #40cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.zh_page_title i {
    color: #59ff85;
    font-size: 2.5rem;
}

.zh_breadcrumb_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.zh_breadcrumb_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zh_breadcrumb_link:hover {
    color: #59ff85;
}

.zh_breadcrumb_separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.zh_breadcrumb_current {
    color: #59ff85;
    font-weight: 600;
}

/* 认证内容区域 */
.zh_auth_content {
    flex: 1;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_auth_section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 区块标题 */
.zh_section_header {
    text-align: center;
    margin-bottom: 50px;
}

.zh_section_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #59ff85 0%, #40cc6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.zh_section_title i {
    color: #59ff85;
    font-size: 2rem;
}

.zh_section_subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 认证表单容器 */
.zh_auth_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.zh_auth_form_wrapper {
    display: flex;
    justify-content: center;
}

.zh_auth_form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
}

.zh_auth_form:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(89, 255, 133, 0.2);
    box-shadow: 0 10px 40px rgba(89, 255, 133, 0.1);
}

/* 表单样式 */
.zh_form_group {
    margin-bottom: 25px;
}

.zh_form_label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.zh_form_label i {
    color: #59ff85;
    font-size: 1rem;
}

.zh_form_input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.zh_form_input:focus {
    background: rgba(89, 255, 133, 0.1);
    border-color: rgba(89, 255, 133, 0.4);
    box-shadow: 0 0 0 3px rgba(89, 255, 133, 0.1);
}

.zh_form_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 表单选项 */
.zh_form_options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

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

.zh_form_checkbox input[type="checkbox"] {
    accent-color: #59ff85;
    transform: scale(1.2);
    cursor: pointer;
}

.zh_form_checkbox label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 0.95rem;
}

.zh_forgot_password {
    color: #59ff85;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.zh_forgot_password:hover {
    color: #40cc6a;
    text-decoration: underline;
}

/* 协议样式 */
.zh_form_agreement {
    margin: 25px 0;
    text-align: center;
}

.zh_agreement_link {
    color: #59ff85;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_agreement_link:hover {
    color: #40cc6a;
    text-decoration: underline;
}

/* 提交按钮 */
.zh_form_submit {
    margin: 30px 0 25px;
}

.zh_auth_submit {
    width: 100%;
    background: linear-gradient(135deg, #59ff85 0%, #40cc6a 100%);
    color: #000;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zh_auth_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(89, 255, 133, 0.4);
    background: linear-gradient(135deg, #40cc6a 0%, #59ff85 100%);
}

.zh_auth_submit:active {
    transform: translateY(0);
}

/* 表单切换 */
.zh_auth_switch {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.zh_switch_link {
    color: #59ff85;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.zh_switch_link:hover {
    color: #40cc6a;
    text-decoration: underline;
}

/* 错误提示 */
.zh_form_notice {
    display: block;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

/* 认证优势展示 */
.zh_auth_benefits {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    height: fit-content;
}

.zh_benefits_title {
    color: #59ff85;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

.zh_benefits_title i {
    font-size: 1.3rem;
}

.zh_benefit_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_benefit_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.zh_benefit_item:hover {
    background: rgba(89, 255, 133, 0.05);
    border-color: rgba(89, 255, 133, 0.15);
    transform: translateX(5px);
}

.zh_benefit_item i {
    color: #59ff85;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* 通知框样式 */
.zh_notice_box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.zh_notice_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.zh_notice_content i {
    color: #59ff85;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_auth_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zh_auth_benefits {
        order: -1;
    }
    
    .zh_page_title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .zh_page_header {
        height: 250px;
    }
    
    .zh_breadcrumb_section {
        padding: 60px 0;
    }
    
    .zh_page_title {
        font-size: 2rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .zh_page_title i {
        font-size: 2rem;
    }
    
    .zh_section_title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_section_title i {
        font-size: 1.8rem;
    }
    
    .zh_section_subtitle {
        font-size: 1.1rem;
    }
    
    .zh_auth_content {
        padding: 40px 0;
    }
    
    .zh_auth_section {
        padding: 0 15px;
    }
    
    .zh_auth_form,
    .zh_auth_benefits {
        padding: 30px;
    }
    
    .zh_form_options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .zh_breadcrumb_nav {
        flex-direction: column;
        gap: 5px;
    }
    
    .zh_benefit_list {
        gap: 15px;
    }
    
    .zh_benefit_item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .zh_page_header {
        height: 200px;
    }
    
    .zh_breadcrumb_section {
        padding: 40px 0;
    }
    
    .zh_page_title {
        font-size: 1.6rem;
    }
    
    .zh_page_title i {
        font-size: 1.5rem;
    }
    
    .zh_section_title {
        font-size: 1.6rem;
    }
    
    .zh_section_title i {
        font-size: 1.4rem;
    }
    
    .zh_section_subtitle {
        font-size: 1rem;
    }
    
    .zh_auth_form,
    .zh_auth_benefits,
    .zh_notice_box {
        padding: 25px;
        margin: 0 10px;
    }
    
    .zh_form_input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .zh_auth_submit {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .zh_benefits_title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .zh_benefit_item {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .zh_notice_content {
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .zh_form_checkbox label,
    .zh_forgot_password,
    .zh_auth_switch {
        font-size: 0.9rem;
    }
}

/* 动画增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_auth_form,
.zh_auth_benefits {
    animation: fadeInUp 0.8s ease-out;
}

.zh_auth_form {
    animation-delay: 0.2s;
}

.zh_auth_benefits {
    animation-delay: 0.4s;
}

/* 表单焦点状态增强 */
.zh_form_input:focus + .zh_form_notice {
    opacity: 0.7;
}

/* 加载状态样式 */
.zh_auth_submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.zh_auth_submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
    .zh_auth_form,
    .zh_auth_benefits,
    .zh_benefit_item,
    .zh_auth_submit,
    .zh_form_input {
        animation: none;
        transition: none;
    }
}