body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #e9fdf1; /* hijau pastel */
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 70px 20px;
      min-height: 100vh;
    }
    .container {
      background-color: #fff;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 450px;
    }
    h2 {
      margin-bottom: 20px;
      color: #16a34a;
      text-align: center;
      font-weight: 600;
    }
    label {
      display: block;
      margin-bottom: 6px;
      color: #111827;
      font-weight: 500;
    }
    input,
    select {
      width: 100%;
      padding: 12px;
      margin-bottom: 18px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background-color: #f9fafb;
    }
    .password-wrapper {
      position: relative;
    }
    .toggle-password {
      position: absolute;
      top: 35%;
      right: 12px;
      transform: translateY(-50%);
      cursor: pointer;
      font-size: 14px;
      color: #6b7280;
    }
    button {
      width: 100%;
      background-color: #059669;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #047857;
    }
    .link {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
    }
    .link a {
      color: #0f766e;
      text-decoration: none;
    }
    .link a:hover {
      text-decoration: underline;
    }