*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.contact-section{
    padding-top: 100px;
}
.forms{
    border-color: #c79c60;
    border-radius: 10px;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}
.pops{
    margin-left: -60px;
}
.forms:focus{
      border-color: #c79c60;
      box-shadow: 0px 0px 10px #c79c60;
}
@media (max-width: 768px) {

  .forms {
    width: 100%; 
    width: 300px; 
  }
  .pops{
    margin-left: 0;
  }
}

