/* Styling for form container */
#paymentForm {
width: 300px;
margin: 0 auto;
background-color: #fff;
padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
padding-bottom: 20px;
  }
  
  /* Styling for form groups */
  .form-group {
    margin-bottom: 20px;
  }
  
  /* Styling for labels */
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  /* Styling for input fields */
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Styling for submit button */
  button[type="submit"] {
    background-color: #2F4F4F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #808080;
  }
  
body {
    display: block;
    margin: 40px;
    margin-right: auto;
    margin-left: auto;
    background-color: #202020;
}

.center {
 display: block;
 margin-left: auto;
 margin-right: auto;
 margin-bottom:20px;
 width: 150px;
 height: 70px;

}

a:link {
  color: #808080;
  background-color: transparent;
  text-decoration: none;
  margin-left: 10px;
  margin-top: 10px;
}
a:visited {
  color: #808080;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #2F4F4F;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: #808080;
  background-color: transparent;
  text-decoration: underline;
}