*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',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: 10%;
font-weight: 200;
font-size: 20px;
}
.hero h1{
    margin-top: 30px;
    font-size: 36px;
}

.hero p{
    margin: 10px 0 50px;
}

form{
    background: #fff;
    display: flex;
    width: fit-content;
}

form input{
    padding:10px  20px;
    height: 50px;
    width: 400px;
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    border:none;
}
form button{
    background: #61b752;
    border: none;
    outline: none;
    height:50px;
    width: 70px;
    cursor: pointer;
}
form button img{
    width: 30px;
}

span{
    color: #61b752;
    margin-top: 10px ;
}