  html, body {
    font-family: Arial, sans-serif;
    color: white;
    background-image: url("/public/Gradient1_clean.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    text-align: center;
  }
  
  form {
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
  }

  .form-group {
    display: grid;
    gap: 10px;
  }

  label {
    display: block;
    margin-bottom: 10px;
  }
  
  select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    background-color: #663399;
    color: white;
  }
  
  input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #663399;
    color: white;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #52297a;
  }

  footer {
    text-align: center;
    font-family: Arial, sans-serif;
    color: white;
    position: static;
    bottom: 0;
    left: 0;
  }

  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 24px;
    }
  
    form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
  
    .footer-content {
      flex-direction: column;
      font-size: 14px;
    }
  
    label {
      font-size: 14px;
    }
  
    select {
      font-size: 14px;
    }
  
    input {
      font-size: 14px;
    }
  }

