/* default login css */

/* Intro CSS */
#login_logo { 
  height: 60px; 
}

#intro_top {
  width: 100%;
  height: 50vh; /* تقليل ارتفاع الخلفية */
  z-index: 1;
  position: relative;
  background: #292929 url('images/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

#login_wrap { 
  width: 100%;
  height: 100%; 
}

#login_all {
  width: 800px;
  max-width: 94%;
  border-radius: 20px;
  display: block;
  margin: 30px auto 0; /* تحريك صفحة تسجيل الدخول للأعلى */
  color: #fff;
  font-size: 17px; /* تصغير حجم النص العام */
}

.login_not_member { 
  text-align: center; 
  padding-top: 5px; 
}

#intro_lang {
  position: absolute;
  top: 1px; /* تقريب العنصر للأعلى */
  right: 9px;
  width: 40px;
  height: 40px;
}

/* تخصيص حجم النصوص داخل login_text */
.login_text {
  font-size: 14px;
}

.login_text .text_xlarge {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-family: 'Cairo', sans-serif;
  animation: revealFade 4s ease-in-out forwards;
  opacity: 0;
}

@keyframes revealFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translateY(0px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

.login_text .text_med {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600; /* أو جرّب 700 لو تحب وزن أثقل */
}

/* Section CSS */
.section {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.section_content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.section_inside {
  margin: 0 auto;
}

@media screen and (max-width: 1120px){
  .section_inside { 
    width: 96%; 
  }
}