/* استایل صفحه ورود جدید */
.login-page-container {
    min-height: 100vh;
    background: radial-gradient(circle at 0% 0%, #4e54c8 0, transparent 50%),
                radial-gradient(circle at 100% 0%, #8f94fb 0, transparent 55%),
                radial-gradient(circle at 0% 100%, #ff9a9e 0, transparent 55%),
                radial-gradient(circle at 100% 100%, #fad0c4 0, transparent 55%),
                linear-gradient(135deg, #0f172a 0%, #020617 100%);
    background-size: 300% 300%;
    animation: loginGradientMove 18s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Vazirmatn', sans-serif;
    position: relative;
    overflow: hidden;
}

.login-page-container::before,
.login-page-container::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: 0;
}

.login-page-container::before {
    background: #4f46e5;
    top: -120px;
    left: -80px;
    animation: loginBlob1 22s ease-in-out infinite;
}

.login-page-container::after {
    background: #f97316;
    bottom: -140px;
    right: -40px;
    animation: loginBlob2 26s ease-in-out infinite;
}

.login-card {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    display: flex;
    min-height: 620px;
    backdrop-filter: blur(22px);
    border: 1px solid rgba(148, 163, 184, 0.35);
    position: relative;
    z-index: 1;
}

@keyframes loginGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes loginBlob1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 60px) scale(1.15);
    }
}

@keyframes loginBlob2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-60px, -90px) scale(1.1);
    }
}

.login-left-panel {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #e5e7eb;
}

.login-right-panel {
    flex: 1;
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(248, 250, 252, 0.18), transparent 60%),
                linear-gradient(145deg, rgba(56, 189, 248, 0.25), rgba(59, 130, 246, 0.3));
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #f9fafb;
}

.login-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #e5e7eb;
    letter-spacing: 0.5px;
}

.login-form-group {
    margin-bottom: 25px;
}

.login-form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.login-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.login-form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.login-signup-link {
    text-align: center;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.login-signup-link:hover {
    text-decoration: underline;
}

.login-right-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 30px;
    object-fit: contain;
}

.login-right-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.login-right-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.login-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.badge-notice {
    background: #2196F3;
    color: white;
}

.badge-warning {
    background: #FF9800;
    color: white;
}

.badge-discount {
    background: #4CAF50;
    color: white;
}

.badge-amazing {
    background: #9C27B0;
    color: white;
}

.badge-important {
    background: #F44336;
    color: white;
}

.badge-news {
    background: #00BCD4;
    color: white;
}

/* ریسپانسیو */
@media (max-width: 992px) {
    .login-card {
        flex-direction: column;
    }
    
    .login-left-panel,
    .login-right-panel {
        padding: 40px 30px;
    }
    
    .login-right-panel {
        order: -1;
    }
    
    .login-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
    }
}

