* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
}
:root {
  --primary-color: #009100;
  --secondary-color: #d7001d;
  --third-color: #ff9100;
  --basic-color: #ffffff;
  --text-color: #0000;
}
body {
  width: 100%;
  min-height: 100vh;
  background: var(--basic-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(background.png);
  background-size: cover;
  background-position: center;
  padding: 10px 10%;
  color: #fff;
}
.hero h3 {
  margin-top: 15%;
  font-weight: 400;
  font-size: 25px;
}
.hero h1 {
  /* margin-top: 2px; */
  font-size: 45px;
}
.hero p {
  /* margin-top: 10px; */
  font-size: 14px;
}
form {
  margin-top: 25px;
  background: #fff;
  display: flex;
  width: fit-content;
}
form input {
  border: 0;
  outline: none;
  padding: 10px 20px;
  height: 50px;
  width: 350px;
  font-size: 16px;
}
form button {
  background: #61b752;
  border: none;
  outline: none;
  height: 50px;
  line-height: 50px;
  padding: 0 25px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
span {
  color: #61b752;
  margin-top: 10px;
  display: block;
}
