    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

    :root {
      --dark-green: #052c25;
      --primary-gold: #c9a66b;
      --light-beige: #f5f1eb;
      --error-red: #a63d3d;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: linear-gradient(135deg, var(--dark-green) 0%, #0a4036 100%);
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      color: var(--dark-green);
    }

    .login-container {
      background: white;
      width: 100%;
      max-width: 450px;
      padding: 40px;
      border-radius: 25px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      border: 1px solid rgba(201, 166, 107, 0.3);
      text-align: center;
      position: relative;
    }

    .logo-section {
      margin-bottom: 30px;
    }

    .logo-text {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--dark-green);
      letter-spacing: 2px;
    }

    .logo-subtitle {
      color: var(--primary-gold);
      font-size: 1.1rem;
      margin-top: -5px;
    }

    .clock {
      font-size: 0.85rem;
      color: #666;
      margin-top: 10px;
      background: var(--light-beige);
      padding: 5px 15px;
      border-radius: 20px;
      display: inline-block;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: var(--dark-green);
    }

    /* حقول الإدخال */
    .form-group {
      text-align: right;
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      font-size: 0.9rem;
    }

    .input-wrapper {
      position: relative;
    }

    .input-wrapper i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary-gold);
    }

    input {
      width: 100%;
      padding: 12px 45px 12px 15px;
      border: 1.5px solid #eee;
      border-radius: 12px;
      font-family: 'Cairo';
      font-size: 1rem;
      transition: 0.3s;
      box-sizing: border-box;
    }

    input:focus {
      outline: none;
      border-color: var(--primary-gold);
      box-shadow: 0 0 8px rgba(201, 166, 107, 0.2);
    }

    .forgot-password {
      text-align: left;
      margin-bottom: 25px;
    }

    .forgot-password a {
      color: #666;
      font-size: 0.85rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .forgot-password a:hover { color: var(--primary-gold); }

    button {
      width: 100%;
      padding: 14px;
      background: var(--dark-green);
      color: var(--primary-gold);
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: 0.4s;
    }

    button:hover {
      background: var(--primary-gold);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(201, 166, 107, 0.3);
    }

    .divider {
      margin: 30px 0;
      position: relative;
      border-bottom: 1px solid #eee;
    }

    .divider span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 0 15px;
      color: #999;
      font-size: 0.9rem;
    }

    .register-link {
      font-size: 0.95rem;
    }

    .register-link a {
      color: var(--dark-green);
      font-weight: bold;
      text-decoration: none;
      border-bottom: 2px solid var(--primary-gold);
    }

    /* التنبيهات */
    .error-message, .success-message {
      padding: 10px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 0.9rem;
      display: none;
    }

    .error-message { background: #fdeaea; color: var(--error-red); border: 1px solid var(--error-red); }
    .success-message { background: #eafaf1; color: #27ae60; border: 1px solid #27ae60; }

