.newbg {
  background-image: linear-gradient(102deg, rgba(0, 6, 18, 0.808) 0%, rgba(4, 14, 34, 0.904) 100%), url(https://uploads.dailydot.com/bd6/4d/c1520391ab7cfdbd.jpg?q=65&auto=format&w=1600&ar=2:1&fit=crop);
  height: 50rem;
  background-position: top;
}

.meet_hero_heading {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  padding-top: 15rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 480px) {
  .newbg {
    padding: 3rem;
  }
}

.user-form {
  background-color: var(--bg);
  padding: 2rem 4rem;
  max-width: 75rem;
  margin: 4rem ;
  border-radius: 1rem;
  margin-top: 0;
  margin-left: 6rem;
  /* border: 1px solid var(--secondary) */
}

@media screen and (max-width: 550px) {
  .user-form {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.form-header {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: var(--primary);
  margin: 1rem 0;
  margin-bottom: 4rem;
}

.acount-form {
  font-size: 1.6rem;
}

.input-group {
  margin-bottom: 3rem;
}

label {
  display: block;
  font-size: 1.6rem;
  margin-top: 1rem;
  margin-bottom: .8rem;
  font-weight: 500;
}

input, select {
  width: 100%;
  font-size: 1.6rem;
  padding: .5rem;
  font-family: inherit;
}


.tandc {
  display: flex;
  
}

.tandc input {
  font-size:1.4rem;
  width: fit-content;
  margin-right: 1rem;
}

[type=submit] {
  /* border: 2px solid var(--secondary); */
  /* width: fit-content; */
  padding: .8rem;
  margin-top: 1.5rem;
  background-color: var(--secondary);
  border-radius: 2rem;
  border: none;
  color: white;
  padding: 10px 20px;
}


.main-about_content {
  max-width: 800px;
}

.terms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.698);
  display: none;
  justify-content: center;
  align-items: center;
  /* transform: translate(-50%, -50%); */
}

.terms-container {
  background-color: white;
  width: 60%;
  height: 60%;
  min-width: 30rem;
  padding: 3rem;
  border-radius: 1rem;
  overflow-y: scroll;
  margin: auto;
  font-size: 1.6rem;
  margin-top: 10rem;
}

.terms-container p {
  margin-bottom: 2rem;
}

.show-modal {
  display: block;
}

@media only screen and (max-width: 500px) {
  .terms-container {
    height: 75%;
  }

  .user-form {
    background-color: var(--bg);
    padding: 2rem 2rem;
  }
}

.closeModal {
  font-size: 1.8rem;
  text-align: right;
}

.closeModal .btn-cta {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  cursor: pointer;
}