/* Import Google Font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

  



body{
    display: grid;
    min-height: 100vh;
}

.hero{
    align-self: start;
    
}
  
.footerWrapper{
    
    align-self: end;
    }

.text{

font-size: var(--font-2);
font-size: var(--sub);

}

.sectionOne{
margin-top: 15px;

}


.form{
display: flex;
flex-direction: column;

}

label{
    font-family: var(--font-2);
    font-size: var(--sub);
}

input, textarea{
    padding: 10px 20px;
    margin: 8px 0;
    border: 1.5px solid #212529;
    border-radius: 3px;
}

.title{
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
  }


.input-field{
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 1.rem;
  }

  .input-field i{
    text-align: center;
    line-height: 55px;
    color: #acacac;
    font-size: 1.1rem;

  }

  .input-field input{
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;

  }

  .input-field input::placeholder{
    color: #aaa;
    font-weight: 500;
  }




.dark-btn{
    margin-top: 10px;
   align-self: start;
}

@media (max-width: 1024px) {
    .grid{

        grid-template-columns: repeat(1, 1fr);
       
    }

.sectionTwo__left{
order: 1;
}

.sectionTwo__right{
    order: 0;
}

}

@media(max-width: 568px){


.dark-btn{
    margin-top: 10px;
    align-self: center;  
}

}
