/**
 * HiTemp 登录弹窗样式
 */

/* 表单选项 */
#login-modal .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

#login-modal .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #6b7280;
}

#login-modal .remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff5722;
    cursor: pointer;
}

#login-modal .forgot-link {
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s;
}

#login-modal .forgot-link:hover {
    color: #e64a19;
}

/* 分隔线 */
#login-modal .auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #9ca3af;
    font-size: 13px;
}

#login-modal .auth-divider::before,
#login-modal .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

#login-modal .auth-divider span {
    padding: 0 15px;
}

/* 第三方登录 */
#login-modal .social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

#login-modal .social-login .social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

#login-modal .social-login .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#login-modal .social-login .social-btn svg {
    width: 24px;
    height: 24px;
}

#login-modal .social-login .social-btn.qq {
    border-color: #12B7F5;
}

#login-modal .social-login .social-btn.qq svg {
    color: #12B7F5;
}

#login-modal .social-login .social-btn.qq:hover {
    background: #12B7F5;
}

#login-modal .social-login .social-btn.qq:hover svg {
    color: #fff;
}

#login-modal .social-login .social-btn.wechat {
    border-color: #07C160;
}

#login-modal .social-login .social-btn.wechat svg {
    color: #07C160;
}

#login-modal .social-login .social-btn.wechat:hover {
    background: #07C160;
}

#login-modal .social-login .social-btn.wechat:hover svg {
    color: #fff;
}


