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

body {
  font-family: "Outfit";
}

.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 button {
  width: 150px;
  height: 50px;
  background: linear-gradient(257deg, #c799c8, #ab84c6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50px;
  transition: all 0.5s ease;
  border: none;
  cursor: pointer;
  color: #77ffc2;
  padding: 15px 30px;
  font-size: 1.3rem;
  outline: none;
  text-decoration: none;
}

.contact-left-title h1 {
  font-weight: 600;
  color: #c799c8;
  font-size: 40px;
  margin-bottom: 5px;
}

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

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

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 500;
  border-radius: 50px;
  background: linear-gradient(#c799c8, #ab84c6);
  color: #77ffc2;
}

.contact-inputs:focus {
  border: 2px solid #77ffc2;
}

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

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

@media (max-width: 800px) {
  .contact-inputs {
    width: 80vh;
  }
  .contact-right {
    display: none;
  }
}

h2 {
  font-weight: 500;
  max-width: 569px;
  font-size: 2rem;
  font-size: 20px;
  margin-bottom: 5px;
}
