  body {
    background: linear-gradient(135deg, #f5f5f5 60%, #fcf6ba 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .login-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .login-container {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(0,51,102,0.10), 0 1.5px 0 #fff;
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .login-container:before {
    content: "";
    position: absolute;
    top: -60px; left: -60px;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    opacity: 0.13;
    border-radius: 50%;
    z-index: 0;
  }

  .login-container:after {
    content: "";
    position: absolute;
    bottom: -50px; right: -50px;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    opacity: 0.10;
    border-radius: 50%;
    z-index: 0;
  }

  .login-container h2 {
    color: #2176ff !important;
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2176ff 0%, #1e5bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    z-index: 1;
  }

  .login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 1;
  }

  .login-form label {
    font-weight: bold;
    color: #2176ff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .input-group {
    position: relative;
    width: 100%;
  }

  .input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.2s;
  }

  .password-input-group .password-toggle {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #777;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s;
  }

  .password-input-group .password-toggle:hover,
  .password-input-group .password-toggle:focus {
    background: rgba(33, 118, 255, 0.08);
    color: #2176ff;
    outline: none;
  }

  .password-input-group .password-toggle i {
    position: static;
    transform: none;
    pointer-events: none;
    color: inherit;
  }

  .login-form input {
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: 'Tajawal', sans-serif;
    background: #fafbfc;
    box-shadow: 0 1px 4px rgba(0,51,102,0.03);
    width: 100%;
    box-sizing: border-box;
  }

  .login-form input:focus {
    border: 1.5px solid #2176ff;
    box-shadow: 0 2px 8px rgba(0,51,102,0.08);
  }

  .login-btn {
    background: linear-gradient(135deg, #2176ff 0%, #1e5bb8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 118, 255, 0.3);
  }

  .login-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    z-index: 1;
  }

  .login-footer a {
    color: #2176ff;
    text-decoration: none;
    font-weight: 600;
  }

  .login-footer a:hover {
    text-decoration: underline;
  }

  .alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    z-index: 1;
  }

  .alert-danger {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
  }

  .alert-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #3c3;
  }

  .alert ul {
    margin: 0;
    padding-right: 1rem;
  }

  @media (max-width: 600px) {
    .login-container {
      margin: 1rem;
      padding: 2rem 1.5rem;
    }

    .login-container h2 {
      font-size: 1.5rem;
    }

    .login-btn {
      padding: 0.9rem 1.5rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 400px) {
    .login-container {
      margin: 0.5rem;
      padding: 1.5rem 1rem;
    }
  }
