* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #001c06 0%, #0b8820 100%, #001c06 100%);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
      }

      .container {
        background: rgb(244, 244, 244);
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 500px;
        width: 100%;
        padding: 40px;
      }

      .header {
        text-align: center;
        margin-bottom: 30px;
      }

      .header h2 {
        color: #004900;
        font-family: "Poppins", sans-serif;
        font-weight: 900;
        font-size: 32px;
        margin-bottom: 10px;
      }

      .header p {
        color: #666;
        font-size: 16px;
      }

      form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      label {
        color: #002206;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
      }

      input {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s;
      }

      input:focus {
        outline: none;
        border-color: #71ea66;
        box-shadow: 0 0 0 3px rgba(16, 127, 66, 0.1);
      }

      button[type="submit"] {
        background: linear-gradient(135deg, #66ea80 0%, #4ba257 100%);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        margin-top: 10px;
      }

      button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 234, 126, 0.3);
      }

      button[type="submit"]:active {
        transform: translateY(0);
      }

      #result {
        margin-top: 20px;
        padding: 15px;
        border-radius: 10px;
        display: none;
      }

      #result.success {
        background: #d4edda;
        color: #155724;
        border: 2px solid #c3e6cb;
        display: block;
      }

      #result.error {
        background: #f8d7da;
        color: #721c24;
        border: 2px solid #f5c6cb;
        display: block;
      }

      #result.warning {
        background: #fff3cd;
        color: #856404;
        border: 2px solid #ffeaa7;
        display: block;
      }

      #result ul {
        margin: 10px 0;
        padding-left: 20px;
      }

      #result button {
        margin-top: 10px;
        background: #66ea87;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s;
      }

      #result button:hover {
        background: #55d383;
      }

      #result.info {
        font-size: 16px;
        background-color: #fff2e8;
        color: #3e1800;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
        display: block;
      }

      .field-group {
        display: flex;
        flex-direction: column;
      }

      .boldHeaderTitle {
        font-weight: 900;
        color: #004900;
      }