/* ریست کلی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', "Tahoma", sans-serif;
}

/* بدنه صفحه با بک‌گراند ملایم */
body.auth-body {
    background: linear-gradient(135deg, #ffffff, #f5f5f5); /* ملایم و روشن */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    direction: rtl;
}

/* متن بزرگ ایران ترابر در بک‌گراند */
.bg-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03); /* بسیار کم‌رنگ */
    font-weight: 900;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* کارت لاگین */
.auth-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95); /* شفافیت حرفه‌ای */
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* ملایم و چشم‌نواز */
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    text-align: center;
    color: #333;
    z-index: 10; /* بالای متن بک‌گراند */
    animation: fadeIn 1s ease-in-out;
}

/* تیتر و توضیح فرم */
.auth-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.auth-card .subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* ورودی‌ها */
.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid #ccc;
    background: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #36ecd9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(54, 236, 217, 0.15); /* ملایم و چشم‌نواز */
}

/* لینک‌ها */
.link {
    color: #36ecd9;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* دکمه */
.btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #36ecd9, #00b4d8);
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25); /* ملایم */
}

/* انیمیشن ورود کارت */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* فونت و راست‌چین */
body {
    font-family: 'Vazirmatn', sans-serif;
}
