/* إعدادات أساسية */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #0ea9c4;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden; /* إخفاء التمرير الأفقي */
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center; /* ضمان أن الحاويات في المنتصف أفقياً */
    align-items: center; /* ضمان أن الحاويات في المنتصف عمودياً */
    flex-wrap: wrap; /* للسماح بالتفاف العناصر في الشاشات الصغيرة */
    box-sizing: border-box; /* للتأكد من أن الحاوية لا تتجاوز عرض الشاشة */
}

/* الجزء الأيسر للصورة */
.left-section {
    flex: 1;
    background-color: #00a3e1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* لضمان ملء الصورة */
    box-sizing: border-box; /* تأكد من أن القسم يتناسب مع العرض */
}

.left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* لتغطية المساحة بالكامل */
}

/* الجزء الأيمن للنموذج */
.right-section {
    flex: 1;
    background-color: #0ea9c4;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* للتأكد من ملاءمة القسم لعرض الشاشة */
}

.form-container {
   
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.xx {
    padding-right: 20px;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    margin-top: -8px;
    font-weight: 800;
}

input[type="text"], input[type="email"], input[type="password"], select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.options{
    margin-top: 20px;
}

button {
    background-color: #ff69b4 !important;
    color: white !important;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.logo-text {
    font-size: 25px;
    font-weight: bold;
    color: #00a3e1;
}

.forgot-password {
    color: #00a3e1;
    float: right;
    font-size: 14px;
    margin-top: 3px;
    text-decoration: none;
}

.remember-me {
    font-size: 15px;   
}

h5 {
    color: #8a8686;
    margin-top: 10px;
}

h6 {
    color: #c2c0c0;
    margin-top: -10px;
}

a {
    color: #00a3e1;
    text-decoration: none;
}

p {
    text-align: center;
    margin-top: 20px;
}

a:hover {
    text-decoration: underline;
}
/* الوسائط - تعديلات الموبايلات */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* اجعل العناصر في عمود */
        justify-content: center; /* مركزها عموديا */
    }

    .left-section {
        display: none; /* إخفاء الجزء الأيسر في الشاشات الصغيرة */
    }

    .right-section {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .form-container {
        width: 90%;
        max-width: 100%;
        padding: 20px;
    }

    input[type="text"], input[type="email"], input[type="password"], select {
        font-size: 14px;
    }

    button {
        padding: 10px;
        font-size: 14px;
    }

    h2 {
        font-size: 20px;
    }

    .logo-img {
        width: 40px;
    }

    .logo-text {
        font-size: 20px;
    }
}

/* الوسائط - شاشات أصغر */
@media (max-width: 480px) {
    .form-container {
        padding: 15px;
        width: 100%;
    }

    button {
        padding: 8px;
        font-size: 13px;
    }

    input[type="text"], input[type="email"], input[type="password"], select {
        font-size: 12px;
    }

    h2 {
        font-size: 18px;
    }

    .logo-img {
        width: 35px;
    }

    .logo-text {
        font-size: 18px;
    }
}
