.signupform {
    width: 350px;
    background: white;
    padding: 30px 20px;
    box-shadow: 0px 0px 10px 3px #ccc;
    position: absolute;
    left: 50%;
    /* top: -50%; */
    top: -211%;
    transform: translate(-50%,-50%);
    transition: 2s;
    z-index: 99;
}
.show-signupform{
    top: 93%;
}

.signupform input,
select, .bt-round
 {
    width: 100%;
    height: 35px;
    margin: 10px auto;
    border-radius: 16px;
    text-align: center;
}

.signupform span {
    width: 30px;
    height: 30px;
    background-color: green;
    color: white;
    position: absolute;
    right: 0px;
    top: 0px;
    text-align: center;
    line-height: 30px;
    font-weight: bolder;
    cursor: pointer;

}

.signupform h3 {
    text-align: center;
    color: rgb(226, 136, 18);

}




.btn-primary {
    background-color: green;
    color: white;
}

.btn-outer-green {
    border: 2px solid green;
}

.btn-dark {
    padding: 10px 15px;
    background-color: black;
    color: white;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    transition: 1s ease-in-out;
}
.btn-h-green:hover{
    background-color: green;
    color: black;
    border: 2px solid black;
    border-radius: 16px;
}
