.contact-form {
  width: 100%;
  height: 100vh;
  background-color: #262626;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}


.right-form {
  width: 40%;
}

.right-form .frm {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 60px auto;
  padding: 10px auto;
}

.frm input {
  width: 100%;
  margin: 5px 0;
  padding: 12px 0px;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #262626;
  font-size: 15px;
  font-weight: 500;
  padding-left: 10px;
}

.frm button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background-color: #57b0e3;
  outline: none;
  border: none;
}

.frm button:hover {
  color: #fff;
  background-color: #262626;
  border: 2px solid #57b0e3;
  transition: all 0.5s;
}

.left-con-texts {
  width: 40%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.left-con-texts i {
  font-size: 22px;
  color: #57b0e3;
  padding: 5px 0px;
}

.left-con-texts span {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-left: 15px;
}