*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* الخلفية بالصورة الجديدة */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #020617;
    background-image: url("/manara-ticket-system/assets/img/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #e5e7eb;
    min-height: 100vh;
}

/* نخلي باقي العناصر فوق الخلفية */
.login-page,
.left-side,
.right-side,
.login-card {
    position: relative;
    z-index: 1;
}

/* توزيع الصفحة – فورم يمين ولوگو يسار */
.login-page {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 60px;
}

/* يسار: اللوغو */
.left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
    text-align: center;
}

/* لوغو كبير ودائري */
.big-logo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    transform: scale(1.3);
    transform-origin: center center;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.30));
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border: 2px solid rgba(255,255,255,0.20);
}

/* عنوان تحت اللوغو مع خلفية */
.support-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.0;
    color: #ffffff;
    padding: 10px 18px;
    background: rgba(0,0,0,0.40);       /* خلفية */
    border-radius: 12px;                /* زوايا ناعمة */
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);         /* تأثير زجاج خفيف */
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* يمين: التسجيل */
.right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* كارد زجاجي */
.login-card {
    width: 380px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    backdrop-filter: blur(16px);
    padding: 30px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 2px rgba(148,163,184,0.4);
}

.login-header {
    text-align: center;
}

.login-header h1 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.subtitle {
    color: #c7d0db;
    font-size: 0.9rem;
}

/* فورم */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* الحقول */
.form-group label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 0.95rem;
}

.form-group input::placeholder {
    color: #74828e;
}

.form-group input:focus {
    outline: none;
    border-color: #00a6c9;
    box-shadow: 0 0 0 2px rgba(0, 166, 201, 0.5);
}

/* تذكرني + زر */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e5e7eb;
    font-size: 0.9rem;
}

/* زر الدخول */
.btn-login {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border: none;
    outline: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(248, 148, 40, 0.6);
    transition: 0.2s;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 46px rgba(248, 148, 40, 0.75);
    filter: brightness(1.06);
}

.login-footer {
    margin-top: 12px;
    text-align: center;
    color: #c5c9d2;
    font-size: 0.8rem;
}

/* موبايل */
@media (max-width: 750px) {
    .login-page {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .big-logo {
        width: 220px;
        height: 220px;
    }

    .support-title {
        font-size: 1.4rem;
    }

    body::after {
        opacity: 0.7;
    }
}