/* Custom styles for the welcome page */
body {
    background-color: #f0f2f5;
}

/* تصميم الجزء الأيسر من صفحة تسجيل الدخول */
.login_left_combo_parent {
    background: linear-gradient(135deg, #6a059c, #4b025b); /* تدرج لوني جذاب */
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* تأثير زخرفي خفيف على الخلفية */
.login_left_combo_parent:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

/* تنسيق الشعار والنصوص في الجزء الأيسر */
.login_left_combo .logo img {
    filter: brightness(2.5); /* لجعل الشعار الأبيض أكثر وضوحًا */
}
.login_left_combo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}
.login_left_combo p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 80%;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* تصميم الجزء الأيمن (النموذج) */
.login .col-md-6 {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login form {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}
.login .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.login .desc {
    font-size: 15px;
    color: #777;
}

/* تنسيق حقول الإدخال والأزرار */
.wow_form_fields input, .wow_form_fields textarea, .wow_form_fields select {
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.2s ease;
}
.wow_form_fields input:focus, .wow_form_fields textarea:focus, .wow_form_fields select:focus {
    border-color: #6a059c;
    box-shadow: 0 0 0 3px rgba(106, 5, 156, 0.15);
}
.login_signup_combo .btn {
    background: #6a059c;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
}
.login_signup_combo .btn:hover {
    background-color: #4b025b;
}

/* أزرار تسجيل الدخول عبر الشبكات الاجتماعية */
.social_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}
.social_btns a {
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.social_btns a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.social_btns svg {
  width: 20px;
  height: 20px;
}

/* زر الوضع الليلي/النهاري */
.night_day_switch {
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 3px;
    transition: all 0.2s ease;
}
.night_day_switch.night {
    background: rgba(0, 0, 0, 0.3);
}
.night_day_switch svg {
    width: 24px;
    height: 24px;
    margin: -1px 0 0;
}
.night_day_switch.day .moon {
    transform: translateX(0);
}
.night_day_switch.night .sun {
    transform: translateX(30px);
}
.night_day_switch.day .sun {
    color: #ffc400;
    background: #fff;
    border-radius: 50%;
}
.night_day_switch.night .moon {
    color: #fff;
    background: #000;
    border-radius: 50%;
}
.night_day_switch.night .sun {
    color: #a5a5a5;
    background: transparent;
}
.night_day_switch.day .moon {
    color: #a5a5a5;
    background: transparent;
}

/* الأنماط المتجاوبة */
@media (max-width: 992px) {
    .login {
        flex-direction: column;
    }
    .login_left_combo_parent, .login .col-md-6 {
        width: 100%;
        height: auto;
    }
    .login_left_combo_parent {
        padding: 30px;
        text-align: center;
    }
    .login_left_combo h1, .login_left_combo p {
        max-width: 100%;
        text-align: center;
    }
    .night_day_switch {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        top: auto;
    }
}