body {
    font-family: Tahoma;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #0056b3;
  }
  
  .container {
    text-align: center;
    max-width: 90%;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
    /* Link Styles */
    a {
        font-size: 17px !important;
        color: #007bff;
        text-decoration: none;
    }

    a:hover {
        font-size: 17px;
        color: #0056b3;
        text-decoration: underline;
    }

  h2 {
    text-align: center;
    color: #0056b3;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #0056b3;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="number"] {
    width: 90% !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }
  select{
    width: 91% !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #0056b3;
  }

  
  button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
  }