html {
  font-size: 62.5%;
  font-family: "Ubuntu";
}

body {
  background-color: #ffffff;
}

body,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container1H {
  width: 100vw;
  height: 100vh;
}

.centered {
  display: grid;
  place-content: center;
}

#contact {
  background-color: #ffffff;
  overflow: hidden;
}
#contact .dategroup {
  display: flex;
  gap: 2rem;
}
#contact .datetime-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact .datetime-container input[type=date],
#contact .datetime-container input[type=time] {
  flex: 1;
}
#contact .datetime-container .datetime-separator {
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.formStyledContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.formContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90vw;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.formBackground {
  content: "";
  width: 90vw;
}

.cloud {
  fill: hsl(280, 39%, 83%);
}

.tifa {
  fill: hsl(280, 39%, 73%);
}

.SvgContainer {
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.SvgItem {
  position: absolute;
  left: 0;
  translate: -100% -50%;
  z-index: 1;
  width: 10%;
  height: auto;
  pointer-events: none;
}

@media only screen and (min-width: 1022px) {
  .formContainer {
    width: 50vw;
  }
  .formBackground {
    top: 0;
    left: 50%;
    translate: -50%;
    content: "";
    width: 90vw;
    height: 100%;
    background-color: hsl(202, 100%, 37%);
    position: absolute;
    rotate: 30deg;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  width: 100%;
}
.form-group label {
  padding-bottom: 1rem;
  color: hsl(0, 0%, 100%);
  font-size: 2.3rem;
  font-weight: bold;
}
.form-group textarea,
.form-group input {
  font-size: 2rem;
  width: calc(100% - 3.2rem);
  padding: 1rem 1rem;
  background-color: #fafafa;
  border: 0.6rem white solid;
  outline: none;
}
.form-group textarea:hover, .form-group textarea:active, .form-group textarea:focus,
.form-group input:hover,
.form-group input:active,
.form-group input:focus {
  outline: dashed;
  outline-color: #7b4397;
}
.form-group input {
  height: 5rem;
  transform: rotate(0.5deg);
}
.form-group textarea {
  transform: rotate(-1deg);
  resize: vertical;
}/*# sourceMappingURL=contact.css.map */