/* General Layout */
#contactteam {
  background-color: black;
  text-align: center;
  width: 100vw;
  min-height: 100vh;
}

/* Sign-up Section */
#signups {
  display: flex;
  min-height: 50vh;
  width: 90vw;
  padding: 30px 50px;
  justify-content: center;
  align-items: center;
  font-size: 15pt;
  margin: 50px auto 80px;
  gap: 10px;
}

#signups > div > h2 {
  width: 30vw;
  letter-spacing: 5px;
  font-family: "areakilo", sans-serif;
  padding: 0 60px 0 80px;
  color: #5066b6;
  font-size: 7rem;
  text-align: left;
  margin-bottom: 10px;
}

#signups > div > p {
  width: 30vw;
  font-family: "swanbold", sans-serif;
  padding: 0 60px 0 80px;
  color: white;
  text-align: left;
}

#signups > img {
  filter: invert(1);
  margin: 0;
  width: 200px;
  height: 450px;
}

#signups form {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
}

#signups form > input {
  margin-bottom: 10px;
}

input[type=checkbox] + label {
  color: white;
  font-size: 13pt;
  margin: 0;
}

/* See Forms Section */
#seeForms {
  width: calc(80% + 60px);
  margin: 40px auto 160px;
}

#seeForms > div {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 30px;
  margin-bottom: 40px;
  background-color: #111;
  border: 3px solid #333;
  color: #e0e0e0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  border-radius: 10px;
}

#seeForms > div img {
  width: 50%;
  height: auto;
  border-radius: 8px;
}

#seeForms > div div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#seeForms > div div h2 {
  font-family: "areakilo", sans-serif;
  color: white;
  font-size: 60pt;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: left;
}

#seeForms > div div p {
  font-family: "swanbold", sans-serif;
  font-size: 13pt;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}

#seeForms > div button {
  background-color: #5066b6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
  margin-top: 20px;
  font-family: "salmapro", sans-serif;
}

#seeForms > div button:hover {
  background-color: #1d2c63;
  transform: scale(1.02);
}

/* Pop-up Form Styling */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-popup form {
  background-color: #222;
  padding: 30px;
  width: calc(60vw - 60px);
  max-height: calc(80vh - 60px);
  position: fixed;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
  color: #e0e0e0;
  border-radius: 10px;
}

.form-section-container {
  display: flex;
  gap: 20px;
}

.form-section {
  flex: 1 1 0%;
}

.form-popup form h2 {
  font-family: "areakilo", sans-serif;
  color: #5066b6;
  letter-spacing: 1px;
  font-size: 24px;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  background-color: #5066b6;
  border: none;
  color: white;
  font-size: 15px;
  font-family: "salmapro", sans-serif;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn:hover {
  background-color: #1d2c63;
}

label {
  display: block;
  color: #5066b6;
  margin-top: 10px;
  font-family: "swanbold", sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
}

input[type=text],
input[type=email],
input[type=date],
input[type=time],
input[type=tel] {
  padding: 10px;
  font-family: "swanbold", sans-serif;
  color: black;
  width: calc(100% - 20px);
  margin-top: 5px;
  font-size: 14px;
  border-radius: 6px;
  height: 20px;
}

textarea {
  padding: 10px;
  font-family: "swanbold", sans-serif;
  color: black;
  width: calc(100% - 20px);
  margin-top: 5px;
  font-size: 14px;
  border-radius: 6px;
}

button {
  background-color: #5066b6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #285369;
}

/* Responsive Design */
@media (max-width: 1008px) {
  #seeForms > div > div > h2 {
    font-size: 45pt;
  }
  #seeForms > div > div > div > * {
    font-size: 17pt;
  }
  #seeForms > div {
    flex-direction: column;
    padding: 15px;
    width: calc(95% - 30px);
    margin: 25px auto;
  }
  #seeForms > div img {
    width: 100%;
  }
  .form-popup form {
    width: 80vw;
    overflow-y: auto;
  }
  .form-section label, .form-section-long label, .form-popup form label {
    font-size: 25pt;
  }
  .form-section input, .form-section-long textarea, .form-section textarea, .form-popup form input {
    font-size: 21pt;
    padding: 20px 5px;
  }
  .form-popup form input[type=checkbox] {
    width: 34pt;
    height: 34pt;
    border: 4px solid white;
  }
  .form-popup form input[type=checkbox]::before {
    content: "";
    width: 0.95em;
    height: 0.95em;
    transform: scale(0);
  }
  .form-popup form input[type=checkbox]:checked::before {
    transform: scale(1) translateY(-50%);
  }
  .close-btn {
    font-size: 25pt;
    padding: 25px;
  }
  .form-popup form button[type=submit] {
    font-size: 25pt;
    width: 100%;
  }
  .form-popup form h2 {
    font-size: 40pt;
  }
}
@media (max-width: 768px) {
  #signups {
    flex-direction: column;
  }
  #signups > div > h2,
  #signups > div > p {
    width: 100%;
  }
  #contactteam > h1 {
    font-size: 40pt;
    padding: 120px 0 100px;
  }
}

/*# sourceMappingURL=contact.css.map */
