*, ::after, ::before{
box-sizing: border-box;}
body{
   font-family: 'Saira', sans-serif;
  height: 100vh;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.content{
  padding: 50px;
  text-align: center;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img {
    width: 500px;
    margin-bottom: 50px;
}
.content-p{
    max-width: 900px;
    margin: 0 auto;
    color: #0a0544;
    font-size: 18px;
    font-weight: 500;
}
.form-group{
  margin-top: 50px;
}
.form-group input{
  min-width: 300px;
  padding: 0 15px;
  background: transparent;
  border: 2px solid #46408a;
  color: #0a0544;
  font-size: 20px;
  height: 60px;
}
.form-group input::placeholder{
  color: #0a0544;
  font-size: 20px;
}
.form-group input:focus{
  outline: none;
  border-radius: 0;
}
.form-group button{
  height: 60px;
  border: none;
  background: #46408a;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  margin-left: -5px;
  padding: 0 20px;
  cursor: pointer;
}
#response{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
   align-items: center;
   opacity: 0;
   visibility: hidden;
}
#response.open{
  opacity: 1;
  visibility: visible;
}
#response .p_content{
  max-width: 500px;
  background: #ffffff;
  margin: auto;
  padding: 30px;
  position: relative;
}
#response .p_content .text-msg{
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 0 0;
}
.close-btn{
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

@media(max-width: 767px){
   .logo-img {
    width: 300px;
    margin-bottom: 30px;

  }
   .content-p{
      font-size: 16px;
      max-width: 100%;
  }
  .form-group {
      margin-top: 30px;
  }
  .content{
    padding: 50px 20px;
  }
}
@media(max-width: 575px){
  .form-group{
    display: block;
    justify-content: center;
  }
  .form-group input{
    min-width: 300px;
    font-size: 16px;
    height: 48px;
    width: 300px;
    border-width: 1px;
  }
  .form-group input::placeholder{
    font-size: 16px;
  }
  .form-group button{
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    margin-top: 15px;
  }
}
@media(max-width: 319px){
  .logo-img {
    width: 200px;
    margin-bottom: 30px;
  }
  .form-group input{
    width: 120px;
    min-width: 120px;
  }
}