/* CONTACT FORM SECTION */

.contactform {
  padding: 5rem 2rem;
}
.sendmessage {
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
.lottie {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 300px;
}
.titlucontact {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1px;
}
.paragrafcontact {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* THE FORM ITSELF */

.contactform form {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  border: 1px solid black;
  border-radius: 1rem;
  padding: 3rem;
}
.manatdesk {
  width: 15rem;
  height: 15rem;
}
.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  max-width: 180px;
}
.form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 17px;
  color: black;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #9b9b9b;
  pointer-events: none;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image: linear-gradient(to right, #116399, #38caef);
  border-image-slice: 1;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #38caef;
  font-weight: 700;
}

.form__field:required,
.form__field:invalid {
  box-shadow: none;
}

/* THE FORM ITSELF */

/* THE BUTTON ITSELF */

.cssbuttons-io-button {
  background: linear-gradient(to right, #116399, #38caef);
  color: white;
  font-family: inherit;
  padding-left: 1.2em;
  margin-top: 1rem;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #0f4e85;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1px;
}

.cssbuttons-io-button .icon {
  background: white;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #020c15;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}
.ws {
  text-decoration: none;
  color: white;
  border: 1px solid black;
  padding: 0.2rem;
  border-radius: 20px;
  background-color: rgb(5, 73, 5);
}
.ws:hover {
  background-color: white;
  color: green;
  transition: all 0.5s ease-in;
}
.ws img {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 860px) {
  .sendmessage {
    gap: 5rem;
  }
}
@media (max-width: 750px) {
  .contactform form {
    padding: 1rem;
  }
  .manatdesk {
    width: 10rem;
    height: 10rem;
  }
  .sendmessage {
    gap: 3rem;
  }
}
@media (max-width: 460px) {
  .manatdesk {
    width: 7rem;
    height: 7rem;
  }
  .paragrafcontact {
    font-size: 0.8rem;
  }
  .titlucontact {
    font-size: 0.8rem;
  }
  .sendmessage {
    gap: 1.5rem;
  }
}
@media (max-width: 380px) {
  .sendmessage form {
    width: 7.2rem;
  }
  .paragrafcontact {
    font-size: 0.6rem;
  }
  .titlucontact {
    font-size: 0.6rem;
  }
}
/* THE BUTTON ITSELF */

/* CONTACT FORM SECTION */
