body {
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  .form-container {
    background: #f9f9f9;
    border: 2px solid green;
    border-radius: 12px;
    padding: 30px;
    width: 320px;
    text-align: center;
  }
  .form-container img {
    width: 80px;
    margin-bottom: 15px;
  }
  h2 {
    color: green;
    margin-bottom: 20px;
  }
  input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid green;
    border-radius: 6px;
  }
  button {
    width: 95%;
    padding: 12px;
    background: green;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  .bottom-text { margin-top: 20px; font-size: 0.9rem; color: #444; }
  .bottom-text a { color: green; text-decoration: none; font-weight: bold; }
  .bottom-text a:hover { text-decoration: underline; }