* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Outfit";
  /* background: linear-gradient(#ffdaff,#fff7f9); */
  background: linear-gradient(#b7dfd6, #a6c7c0);
}
.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 {
  font-weight: 600;
  color: #a363aa;
  font-size: 40px;
  margin-bottom: 5px;
}
.contact-left-title hr {
  border: none;
  width: 220px;
  height: 4px;
  background-color: #a363aa;
  border-radius: 10px;
  margin-bottom: 30px;
}
.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  color: #666;
  border-radius: 50px;
}
.contact-inputs:focus {
  border: 2px solid #ff994f;
}
.contact-inputs::placeholder {
  color: #a9a9a9;
}
.submit-btn {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #ff994f, #fa6d86);
  cursor: pointer;
}
@media (max-width: 800px) {
  .contact-inputs {
    width: 80vw;
  }
  .contact-left {
    margin: 20px;
  }
  .contact-left-title {
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px;
  }
  .contact-right {
    display: none;
  }
}
.shifts {
  margin-left: 24px;
  font-weight: 550;
  color: #5677af;
  font-size: 20px;
}
span {
  color: #868282;
}
p {
  font-weight: 550;
  color: #a65aae;
  margin-left: 18px;
  font-size: 25px;
}
#shift1 {
  size: 30px;
}
