html,
body {
  background: url(headerimage1.jpg) no-repeat center center fixed; 
  background-size: cover;
  height: 100%;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

hr {
  margin: 20px auto;
  color: #F05F44;
  border: 3px solid #F05F44;
  max-width: 65px;
  opacity: 1;  
}

h1 {
  font-size: 3rem; 
  color: #e2dbdb;
}

.buffer {
  height: 10rem;
}

.btn {
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 300px;
}

.btn-primary {
  background-color: #F05F44;
  border-color: #F05F44;
  --bs-btn-hover-bg: #d44108;
  --bs-btn-hover-border-color: #d44108; 
}

.btn-primary:hover {
  background-color: #d44108;
  border-color: #d44108;
  cursor: pointer;
}

.btn-xl {
  padding: 1rem 2rem; 
}


/* Sign Up Form*/
.form, .thank-you-container {
  width: 95%;
  max-width: 650px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #252525;
  padding: 2rem 4rem;
  border-radius: 1rem;
}

.form h2 {
  font-weight: 600;
  text-transform: uppercase;
}

.form h2, p, input {
  width: 100%;
}

.form input {
  border: 1px solid #808080;
  border-radius: 0.25rem;
}

.form .text,
.form .email {
  padding: 0.25rem 0.5rem;
}

.form-content-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form .button {
  border-radius: 3rem;
  width: unset;
  border: none;
}

.form small {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
}


/* Thank You Page*/
.thank-you-container h1 {
  font-weight: 600;
  color: #252525;
  margin-bottom: 1.5rem;
}


@media screen and (max-width: 500px) {
  .form, .thank-you-container {
    padding: 1.5rem;
  }

  .form {
    margin: 12rem auto 2rem auto;
  }
}