*{
    margin: 0%;
    padding: 0%;
    font-family: Arial, Helvetica, sans-serif;
}
.main{
    display: flex;
    justify-content: center;
    margin-top: 7%;
    align-items: center;
}
.signup{
    padding: 10px;
    background-color: #eee;
    border-radius: 7px;
}
.join{
    text-align: center;
    margin-top: 50px;
}
.join h2{
    font-size: 30px;
    font-weight: 900;
    color: rgb(56, 151, 56);
}
h4{
    color: rgb(56, 151, 56);
}
form{
    margin-top: 50px;
}
.items{
    display: flex;
    justify-content: center;
    align-items: center;
}
.items label{
    width: 120px;
    margin: 10px;
}
.items input{
    height: 25px;
    width: 250px;
    border-radius: 5px;
    padding: 3px;
    box-sizing: border-box;
}
.submit{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 50px;
    cursor: pointer;
}
#submit{
    color: white;
    width: 100%;
    background-color: rgb(56, 151, 56);
    border-radius: 36px;
}
a{
    text-decoration: none;
}