
.signupdiv{
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 1px 2px 3px #ccc;
    border-radius: 7px;
    text-align: center;
    width: 42%;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}
#signupform{
    padding: 15px;
}
input, select{
    margin-bottom: 10px;
    height: 38px;
    border: 1px solid #ddd;
    padding-left: 10px;
}

button, select{
    width: 100%;
}
button{
    height: 45px;
    background: #188c01;
    border: none;
    border-radius: 5px;
    color: #fff;
}
#searchbutton{
    height: 45px;
    background:blue;
    border: none;
    border-radius: 5px;
    color: #fff;
    width: 100%;
}

.embed-container {
  position: relative; 
  padding-bottom: 56.25%; /* ratio 16x9 */
  overflow: hidden; 
  width: 100%;
  height: auto;
}

.embed-container iframe {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}
/* ratio 4x3 */
.embed-container.ratio4x3 {
  padding-bottom: 75%;
}



@media (max-width: 767px) {
    .signupdiv{
    width: 95%;
    margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .signupdiv{
    width: 70%;
    margin-bottom: 30px;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .signupdiv{
    width: 52%;
    margin-bottom: 20px;
    }

}