body {
      font-family: system-ui, sans-serif;
      background: #0f172a;
      color: #e5e7eb;
      margin: 0;
      padding: 2rem;
      display: flex;
      justify-content: center;
    }

    .container {
      background: #020617;
      padding: 2rem 2.5rem;
      border-radius: 16px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    h1 {
      text-align: center;
      margin-top: 0;
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      margin-top: 1rem;
      margin-bottom: 0.3rem;
      font-weight: 600;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 0.7rem;
      border-radius: 8px;
      border: none;
      margin-bottom: 1rem;
      background: #1e293b;
      color: #e5e7eb;
    }

    textarea {
      height: 120px;
      resize: vertical;
    }

    button {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      background: #22c55e;
      color: #022c22;
      font-weight: 600;
      letter-spacing: 0.03em;
      transition: transform 0.2s ease-out, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
      border: none;
      cursor: pointer;
      width: 100%;
      font-size: 1rem;
      will-change: transform;
    }

    button:hover {
      transform: translateY(-2px);
      background: #16a34a;
      box-shadow: 0 14px 30px rgba(34, 197, 94, 0.45);
    }

    button:active {
      transform: translateY(0) scale(0.92);
      box-shadow: 0 6px 14px rgba(34, 197, 94, 0.3);
    }