body {
    font-family: Arial, sans-serif;
    background-color: #191A1B;
    align-items: center;
    height: 100%;
    margin: 0;
  }
  .form-container {
    margin-top: 70px;
    width: 80%;
    margin-left: 10%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .form-container h2 {
    margin-bottom: 10px;
  }
  .form-container p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .form-group input[type="radio"] {
    width: auto;
  }
  .form-group .radio-group {
    display: flex;
    gap: 10px;
  }
  .form-group textarea {
    resize: none;
    height: 80px;
  }
  .form-footer {
    margin-top: 20px;
  }
  .form-footer input[type="checkbox"] {
    margin-right: 10px;
  }
  .form-footer a {
    color: #007BFF;
    text-decoration: none;
  }
  .form-footer a:hover {
    text-decoration: underline;
  }
  .submit-btn {
    width: 300px;
    padding: 10px;
    background-color: #191A1B;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  .submit-btn:hover {
    background-color: #605D5D;
  }