*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hero
{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(image/background15.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

form
{
  background: #fff;
  width: 500px;
  padding: 30px;
  font-size: 18px;
}

.message-icon
{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.message-icon i
{
  font-size: 40px;
}

.message-icon span
{
  font-size: 22px;
  font-weight: bold;
  margin-left: 15px;
}

form input, textarea
{
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000;
  outline: none;
}

#input-field
{
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

#input-field i
{
  font-size: 22px;
  margin-right: 15px;
}

.send-btn
{
  width: 100px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  padding: 6px 0;
  border-radius: 50px;
}