.signup-wrapper {
    min-height:100vh;
    background-color:#ededed;
    display:flex;
    padding:75px 0;
    justify-content: center;
    align-items: center;
}
.signup-main {
    width:600px;
    height:550px;
    background-color:#ffffff;
    border-radius:5px;
    padding:30px;
    text-align:center;
}
.heading {
    margin-top:50px;
    margin-bottom:30px;
}
.input-area {
    width:400px;
    height:50px;
    margin:10px 0;
    font-size:20px;
    padding:0 3px;
}
.input-area::placeholder {
    font-size:15px;
}
.input-area:focus::placeholder {
    color:#474747;
}
.input-submit {
    width:300px;
    height:50px;
    background-color:#87898c;
    border:1px solid #ededed;
    transition: all 1s;
    border-radius:30px;
    margin-top:50px;
    color:#eeeeee;
    font-size:17px;
}
.input-submit:hover {
    opacity:0.7;
}
.error {
    color:red;
}
