/* --- الإعدادات العامة --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* خط الفون العادي */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    -webkit-tap-highlight-color: transparent;
}

body, html {
    height: 100%;
    background-color: #fff;
    overflow-x: hidden;
}

/* --- الحاوية الرئيسية (صورة الروبوت) --- */
.main-screen-container {
    position: relative;
    width: 100%;
    height: 45vh; /* ارتفاع الصورة */
    background: #fff url('IMG_7224.gif') no-repeat center top; 
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- التوهج (التسييح) لدمج الصورة مع الخلفية البيضاء --- */
.main-screen-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* مساحة التوهج من تحت */
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.6) 40%, 
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

/* --- الكلمتين اللي في نص الصورة --- */
.header-labels {
    position: absolute;
    top: 55%; /* مكانهم في نص الروبوت زي ما طلبت */
    left: 20px; /* ترحيل جهة اليسار قليلاً */
    z-index: 10;
    text-align: left;
}

.brand-logo-fixed {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    display: block;
}

.page-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-top: -5px;
}

/* --- منطقة المحتوى (الحقول والزرار) --- */
.auth-content-area {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 380px;
    margin: -20px auto 0; /* رفع خفيف ليدخل مع التسييح */
    padding: 20px;
    text-align: center;
}

/* حقول الإدخال */
.dark-input-group {
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 5px 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.dark-input-group input {
    background: transparent;
    border: none;
    color: #000;
    padding: 15px 10px;
    width: 100%;
    font-size: 16px;
    outline: none;
    text-align: right;
}

/* زر التأكيد الأسود */
.purple-submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

/* خيار تذكرني */
.remember-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #555;
    font-size: 15px;
}
