/**
 * Login & Register Page Styles
 * 登录注册页面样式
 * 
 * @package AirMore
 * @since 1.0.0
 */

/* ========== 页面容器样式 ========== */
.passport-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 100px;
    position: relative;
    box-sizing: border-box;
}

.passport-page-content {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 30, 45, 0.95) 100%);
    border: 1px solid rgba(139, 157, 195, 0.25);
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: absolute;
    
    /* 默认隐藏，使用 opacity 和 transform */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.passport-page-content.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.passport-page-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .passport-page-container {
        padding: 140px 16px 80px;
    }
    
    .passport-page-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .passport-page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

