  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'MOH', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #008755 0%, #006644 100%);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
  }

  .login-container {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      max-width: 400px;
      width: 100%;
      animation: slideIn 0.5s ease-out;
  }

  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateY(-30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .login-header {
      background: linear-gradient(135deg, #008755, #009966);
      /* padding: 40px 30px; */
      padding: 5px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .login-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(242, 205, 0, 0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }
  }

  .logo {
      width: 390px;
      height: 110px;
      background: #ffffff;
      border-radius: 12px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
  }

  .logo img {
      width: 350px;
      height: 115px;
      object-fit: contain;
  }

  .login-header h1 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 600;
      position: relative;
      z-index: 1;
  }

  .login-form {
      padding: 40px 30px;
  }

  .form-group {
      margin-bottom: 25px;
      position: relative;
  }

  .form-group label {
      display: block;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
  }

  .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
  }

  .input-icon {
      position: absolute;
      right: 15px;
      color: #9b945f;
      font-size: 18px;
      pointer-events: none;
      transition: all 0.3s ease;
  }

  .form-group input {
      width: 100%;
      padding: 12px 45px 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 15px;
      transition: all 0.3s ease;
      background: #f8f8f8;
  }

  .password-toggle {
      position: absolute;
      left: 15px;
      color: #9b945f;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      pointer-events: auto;
      padding: 5px;
      user-select: none;
  }

  .password-toggle:hover {
      color: #f2cd00;
      transform: scale(1.1);
  }

  .form-group input:focus {
      outline: none;
      border-color: #008755;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(0, 135, 85, 0.1);
  }

  .form-group input::placeholder {
      color: #999;
  }

  .remember-forgot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      font-size: 14px;
  }

  .remember-forgot label {
      display: flex;
      align-items: center;
      color: #666;
      cursor: pointer;
  }

  .remember-forgot input[type="checkbox"] {
      margin-left: 8px;
      cursor: pointer;
      accent-color: #008755;
  }

  .remember-forgot a {
      color: #9b945f;
      text-decoration: none;
      transition: color 0.3s;
  }

  .remember-forgot a:hover {
      color: #f2cd00;
  }

  .login-button {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #008755, #00a066);
      color: #ffffff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 135, 85, 0.3);
  }

  .login-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 135, 85, 0.4);
  }

  .login-button:active {
      transform: translateY(0);
  }

  .signup-link {
      text-align: center;
      margin-top: 25px;
      color: #666;
      font-size: 14px;
  }

  .signup-link a {
      color: #008755;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
  }

  .signup-link a:hover {
      color: #f2cd00;
  }

  .accent-line {
      width: 60px;
      height: 3px;
      background: #f2cd00;
      margin: 15px auto 0;
      border-radius: 2px;
  }

  @media (max-width: 480px) {
      .login-container {
          border-radius: 15px;
      }

      .login-header {
          /* padding: 30px 20px; */
          padding: 5px;
      }

      .login-form {
          padding: 30px 20px;
      }
  }