.contact-left-title {
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(270deg, #168ae4, #12437e);
  min-height: 100vh;
  overflow: hidden;
}

.contact-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #002147;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 150px;
  height: 5px;
  background-color: #002147;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 23px;
}

.contact-inputs:hover {
  border: 2px solid #0750a3;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
}

.contact-inputs:focus {
  border: 3px solid #002147;
}

.contact-inputs::-moz-placeholder {
  color: a9a9a9;
}

.contact-inputs::placeholder {
  color: a9a9a9;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #168ae4, #3776c2);
  cursor: pointer;
}

.contact-left button img {
  height: 15px;
}

.contact-right img {
  width: 500px;
}

textarea {
  resize: none;
}

@media (max-width: 768px) {
  .contact-inputs {
    width: 80vw;
  }
  .contact-right {
    display: none;
  }
  .logo {
    max-width: 50%;
  }
}/*# sourceMappingURL=formulario.css.map */