/* @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;500;800&display=swap'); */

:root {
    --industry-green: #1f7a63;
    --charcoal: #111827;
    --slate-100: #f1f5f9;
    --slate-300: #cbd5e1;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Vazir', sans-serif;
    background-color: var(--slate-100);
    overflow: hidden;
}

.main-wrapper {
    display: flex;
    height: 100vh;
}

/* بخش آمار و اطلاعات سمت چپ */
.info-panel {
    flex: 1;
    background-color: var(--slate-100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    border-left: 1px solid var(--slate-300);
}

/* بخش فرم ورود سمت راست */
.login-panel {
    width: 450px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.02);
    z-index: 10;
}

.stat-card {
    background: white;
    border: 1px solid var(--slate-300);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.stat-card:hover { transform: translateY(-5px); border-color: var(--industry-green); }

.stat-icon {
    width: 50px; height: 50px;
    background: var(--slate-100);
    color: var(--industry-green);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-left: 20px;
}

.form-label { font-weight: 700; color: var(--charcoal); font-size: 0.9rem; }

.form-control {
    border: 2px solid var(--slate-100);
    background: var(--slate-100);
    border-radius: 12px;
    padding: 14px;
    font-weight: 500;
}

.form-control:focus {
    background: white;
    border-color: var(--industry-green);
    box-shadow: none;
}

.btn-login {
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    margin-top: 20px;
    width: 100%;
    transition: 0.3s;
}

.btn-login:hover { background: var(--industry-green); }

@media (max-width: 992px) {
    .info-panel { display: none; }
    .login-panel { width: 100%; padding: 40px; }
}
@media (max-width: 768px) {
    body{
        overflow: scroll;
    }
}
