
    * {box-sizing: border-box; margin: 0; padding: 0;}
    body {
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background: url('https://www.firstbankeg.com/UserFiles/NewsSizes/1920/2023/09/24/17792.jpg?230924102238') center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .card {
      width: 850px;
      max-width: 100%;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: fadeIn 1s ease-in-out;
      overflow: hidden;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

   .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(234, 248, 240, 0.6);
  padding: 16px 22px;
  animation: slideDown 0.8s ease;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
    @keyframes slideDown {
      from {transform: translateY(-20px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    .header .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header .brand img {
      height: 50px;
      border-radius: 6px;
      transition: transform 0.4s;
    }

    .header .brand img:hover {
      transform: scale(1.1);
    }

    .nav a {
      text-decoration: none;
      color: #064a31;
      font-weight: 600;
      margin-left: 18px;
      position: relative;
      transition: color 0.3s;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #0b6b4a;
      transition: width 0.3s;
    }

    .nav a:hover::after {
      width: 100%;
    }

    .nav a:hover {
      color: #0b6b4a;
    }

    .body {
      display: flex;
      animation: fadeUp 1.2s ease;
    }

    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .sidebar {
      width: 180px;
      background: rgba(247, 251, 249, 0.6);
      border-right: 2px solid rgba(213, 233, 219, 0.7);
      padding: 20px 15px;
    }

    .sidebar .item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #0b6b4a;
      margin-bottom: 16px;
      transition: all 0.3s;
      border-radius: 8px;
      padding: 8px;
      cursor: pointer;
    }
    .sidebar .item {
  display: flex;
  align-items: center;
  gap: 10px;        /* المسافة بين الصورة والنص */
  text-decoration: none; /* يشيل الخط تحت النص */
  color: #000;      /* لون النص */
  font-weight: 600; /* optional لو عايز نفس الوزن السابق */
}


    .sidebar .item img {
      width: 20px;
      height: 20px;
    }

    .sidebar .item:hover {
      background: rgba(223, 242, 230, 0.7);
      transform: translateX(5px);
    }

    .main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
}
    .account-box {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #cfe7d6;
      border-radius: 12px;
      padding: 18px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-bottom: 10px;
    }

    .account-box h3 {
      margin: 0;
      color: #064a31;
      font-size: 20px;
    }

    .account-box p {
      margin: 0;
      font-weight: 600;
      color: #064a31;
    }

    .transfer-form {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #cfe7d6;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

    .icon-bar {
      display: flex;
      justify-content: space-around;
      margin-bottom: 20px;
    }

    .icon-bar .icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 12px 20px;
      border-radius: 12px;
      transition: all 0.3s;
      cursor: pointer;
    }

    .icon-bar .icon img {
      width: 45px;
      height: 45px;
      transition: transform 0.3s;
    }

    .icon-bar .icon:hover img {
      transform: scale(1.1);
    }

    .icon-bar .icon.active {
      background: rgba(11, 107, 74, 0.12);
      box-shadow: 0 0 10px rgba(11, 107, 74, 0.25);
    }

    .icon-bar span {
      font-weight: 600;
      color: #064a31;
    }

    .transfer-form input {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 12px;
      border: 1.8px solid #b8dbcb;
      border-radius: 8px;
      font-size: 15px;
      transition: box-shadow 0.3s, border-color 0.3s;
    }

    .transfer-form input:focus {
      outline: none;
      border-color: #0b6b4a;
      box-shadow: 0 0 6px rgba(11,107,74,0.3);
    }

    .transfer-form button {
      display: block;
      width: 48%;
      padding: 12px;
      background: #0b6b4a;
      color: #fff;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      margin-top: 10px;
    }

    .transfer-form button:hover {
      background: #097043;
      transform: scale(1.03);
    }

    .step-2 {display: none;}
    .confirm-details p {margin-bottom: 8px; color: #064a31; font-weight: 600;}

    @media(max-width: 720px) {
      .body {flex-direction: column;}
      .sidebar {width: 100%; display: flex; justify-content: space-around; border-right: none; border-bottom: 2px solid rgba(213, 233, 219, 0.7);}
      .transfer-form button {width: 100%; margin-top: 10px;}
    }
    /* تعديل شكل select عشان يكون زي باقي الحقول */
form#step1 select {
  width: 100%;           /* نفس عرض الحقول */
  padding: 10px 12px;    /* نفس padding بتاع input */
  margin-bottom: 12px;   /* نفس المسافة بين الحقول */
  border: 1.8px solid #b8dbcb; /* نفس حدود input */
  border-radius: 8px;    /* نفس radius */
  font-size: 15px;       /* نفس حجم الخط */
  background-color: #fff; /* لون خلفية أبيض */
  appearance: none;      /* يشيل الشكل الافتراضي للـ select */
  -webkit-appearance: none; 
  -moz-appearance: none;
}

form#step1 select:focus {
  outline: none;
  border-color: #0b6b4a;
  box-shadow: 0 0 6px rgba(11,107,74,0.3);
}
/* تعديل شكل select2 ليكون زي باقي الحقول */
.select2-container--default .select2-selection--single {
    height: 45px; /* نفس ارتفاع باقي الحقول */
    padding: 10px 12px; /* نفس padding بتاع input */
    border: 1.8px solid #b8dbcb; /* نفس حدود input */
    border-radius: 8px; /* نفس radius */
    background-color: #fff; /* خلفية أبيض */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 25px; /* يوازن النص وسط الحقل */
    font-size: 15px;   /* نفس حجم الخط */
    color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}
/* إضافة نفس المسافة بين الـ select2 وباقي الحقول */
.select2-container {
    margin-bottom: 12px; /* نفس المسافة بين الحقول */
}
.form-message {
  display: none;
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  transition: 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  height: 45px;
  padding: 10px 12px;
  border: 1.8px solid #b8dbcb;
  border-radius: 8px;
  box-sizing: border-box;
}
