.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #f8f9fa;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
  }
  
  .login-box {
    background: white;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
  }
  
  .login-box h2 {
    text-align: center;
    color: #041E3A;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  
  .login-box label {
    display: block;
    margin-bottom: 10px;
    color: #041E3A;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .login-box input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    transition: 0.3s ease;
  }
  
  .login-box input:focus {
    border-color: #23B2B2;
    outline: none;
    box-shadow: 0 0 6px #23B2B2;
  }
  
  .login-box button {
    background-color: #23B2B2;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .login-box button:hover {
    background-color: #1a9898;
  }
  
  .login-footer {
    margin-top: 25px;
    text-align: center;
  }
  
  .login-footer a {
    display: block;
    color: #041E3A;
    font-size: 1rem;
    margin-bottom: 10px;
    text-decoration: none;
  }
  
  .login-footer span {
    color: #23B2B2;
    font-weight: bold;
  }
  