@media(max-width: 600px) {
  
  }
  .input-mobile{
    border-radius: 0px;
  }
  .icon-mobile{
    border-radius: 0px;
  }
  .OTP-box{
    border:1px solid #999;
    padding: 5px;
    margin: 10px 0px 5px 0px;
    display: none;
  }
  .icon-otp{
    padding: 0px 0px;
    width: 80px;
    
  }

.datepicker {
  width: 100%;
  border: 1px solid #003049;
  font-size: 18px;
  padding: 5px;
}
.Q-saved{
  padding: 5px 5px;
  font-size: 12px;
  text-align: right;
}
#success_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 10px;
  z-index: 2000;
  padding: 10px;
  background-color: rgb(252, 145, 177);
  color: white;
  display: none;
}
#worng_msg{
  display: none;
}
.NewUser{
  text-align: center;
  margin-top: 20px;
}
#OTP_msg{
  padding: 10px;
  text-align: center;
}
.alert_errors_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 2000;
  padding: 5px;
  color: black;
 border-radius: 0;
}

.alert_registered_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 2000;
  padding: 5px;
  background-color: rgb(252, 145, 177);
  color: white;
 border-radius: 0;
}
.alert_ChangedPhone_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 2000;
  padding: 5px;
  background-color: rgb(252, 145, 177);
  color: white;
 border-radius: 0;
}
.alert_worngPhone_or_Date_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 2000;
  padding: 5px;
  color: black;
 border-radius: 0;
}
.alert_worngPhone_or_Pass_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 2000;
  padding: 5px;
  color: black;
 border-radius: 0;
}
html,body{
  background-color:transparent !important;
    background-image: url('/images/bg/bg.png');
    background-size:contain; /* لتغطية الصفحة بالكامل */
    background-repeat: no-repeat;
    background-position: center; /* لضبط الصورة في المركز */
    background-attachment: fixed; /* لجعل الخلفية ثابتة عند التمرير */
    margin: 0 !important;
    padding:0!important;
    height: 100% !important;
    display: grid;
    place-items: center; 
}

.wrapper-login {
  background-color: transparent;

}
.logo_image_new{
  
  object-fit: cover;
  object-position:center;
}


/**************************************************************************/

.input-control {
  color: white !important;
  border: none;
  border-bottom: 2px solid #ced4da;
  background-color: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.flag-icon{
  max-width: 30px;
}
.fa-lock{
  font-size: 20px;
}
.input-group-text{
  background-color: white;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-card{
  /**background-color: rgba(230, 234, 237, 0.9); /* أبيض مع شفافية */
  background-color: rgb(0, 48, 73);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); /* إضافة ظل خفيف لإعطاء تأثير العمق */
}
.input-control:focus {
  color:#f77f00 !important;
  border-color: #2474bc !important; /* تغيير لون الحدود عند التفاعل */
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); /* إضافة ظل خفيف حول العنصر */
  transform: scale(1.03); /* تكبير بسيط عند التفاعل */
}

.input-control::placeholder {
  color: #d1d0d0 !important;
  border-color: white !important;
  transition: color 0.3s ease; /* تأثير على النص placeholder */
}

.input-control:focus::placeholder {
  color: #003049 !important; /* تغيير لون النص placeholder عند التفاعل */
}

/* تنسيق الحاوية */
.remember-me-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* تنسيق الـ Label */
.remember-me-label {
  font-size: 16px;
  color: white; /* يمكنك تخصيص اللون */
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* تنسيق الـ Checkbox داخل الـ Label */
.remember-me-label input[type="checkbox"] {
  display: none;
}

/* تصميم مربع الاختيار بشكل مخصص */
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #f77f00; /* لون الحدود */
  border-radius: 4px;
  margin-left: 10px;
  position: relative;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* تأثير عند التحديد */
.remember-me-label input[type="checkbox"]:checked + .checkbox-custom {
  background-color: #0056b3; /* اللون عند التحديد */
  border-color: #0056b3;
}

/* إضافة علامة صح داخل المربع عند التحديد */
.remember-me-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\2713';
    position: absolute;
    top: -1;
    left: 2px;
    bottom: -5px;
    font-size: 21px;
    color: white;
}

.custom-loader {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

