@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.background{
  width: 100%;
  height: 300px;
}
.background img{
    width: 100%;
    max-height: 300px;
}

.signup{
    width: 700px;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.signup h2{
    font-size: 50px;
    color: #dba334;
    padding-top: 100px;
}
.signup p, a, i{
    font-size: 14px;
    color: #000000;
}
.signup p, a:hover{
    color: #C68C18;
}
.signup .signup_form .field input{
    margin: 30px 0 10px 0;
}
.signup .signup_form .field input, #name{
    height: 50px;
    width: 40%;
    padding: 7px 14px;
    margin: 10px 5px;
}
.signup .signup_form .field input, #EP{
    width: 82%;
}
form .button button{
    width: 82%;
    height: 50px;
    border-radius: 5px;
    position: relative;
    margin-top: 10px;
    background: -webkit-linear-gradient(right, #C68C18, #e3a220, #dba334, #cbab69);
    transition: all 0.4s ease;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    color: #fff;
}
.signup p:nth-of-type(2){
    color: #000000;
    font-size: 14px;
}
.signup p:nth-of-type(2) a{
    color: #C68C18;
    text-decoration: none;
}
.signup p:nth-of-type(2) a:hover{
    text-decoration: underline;
}
/* @media screen and (max-width: 2100px) {
    .background img{
        height: 300px;
    }
    .signup{
        margin-top: 0%;
    }
}
@media screen and (max-width: 1600px) {
    .background img{
        height: 200px;
    }
    .signup{
        position: relative;
        margin-top: 10%;
    }
}
@media screen and (max-width: 1100px) {
    .background img{
        height: 180px;
    }
    .signup{
        position: relative;
        margin-top: 10%;
    }
} */
@media screen and (max-width: 800px) {
    .background img{
        width: 100%;
        height: 50%;
    }
    .signup{
        width: 100%;
        top: 50%;
        position: absolute;
    }
}
