@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: url(../Images/bg-intro-desktop.png);
  background-size: cover;
  background-color: #ff7a7a;
}
section {
  width: 50%;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0px 130px;
}
.left {
  color: #fff;
  margin-right: 35px;
}
h1 {
  font-size: 47px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.left p {
  line-height: 1.5;
  opacity: 0.9;
}
.try-it {
  width: 90%;
  background-color: #6055a5;
  color: #efefef;
  padding: 17px;
  text-align: center;
  margin-bottom: 18px;
  border-radius: 10px;
}
.try-it span {
  color: #fff;
  font-weight: 600;
}
#form {
  width: 90%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 10px;
}
#form div {
  display: flex;
  flex-direction: column;
}
input,
.btn {
  padding: 20px 20px;
  margin-bottom: 20px;
  border: 1px solid #efefef;
  border-radius: 10px;
  font-weight: 600;
}
.btn {
  text-transform: uppercase;
  background-color: #38cc8c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
form p {
  font-size: 11px;
  color: #b9b6d3;
  text-align: center;
}
.services {
  color: #ff7a7a;
  font-weight: 700;
  text-decoration: none;
}
input:focus {
  outline-color: #b9b6d3;
}
.error-icon {
  background: url(../Images/icon-error.svg) no-repeat;
  background-position: 95%;
}
.error-message {
  font-size: 12px;
  font-weight: 500;
  color: #ff7a7a;
  margin-left: auto;
  margin-top: -14px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 992px) {
  .container {
    padding: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ff7a7a;
    background: url(../Images/bg-intro-mobile.png);
  }
  section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .left {
    text-align: center;
    margin-bottom: 30px;
  }
  form p {
    text-align: center;
  }
  h1 {
    font-size: 35px;
  }
  .try-it {
    padding: 17px;
  }
}
