/* CSS for Sign UP Page */
#body{
    background-color: rgb(136, 136, 136);
}
#main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

#sign_up {
    border-style: solid;
    border-width: 1px;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color:rgb(11, 19, 30);
    border-style: solid;
    border-width: 15px;
    border-color:rgb(32, 43, 59) ;
    width: 500px;
}

#password_valid{
    font-size: 14px;
    font-weight: bold;
}

.input {
    width: 400px;
    border-radius: 5px;
    height: 35px;
    background-color: rgb(32, 43, 59);
    color: white;
    border-radius: 10px;
    border: none;
    padding-left: 10px;
    font-size: 12px;
}

#submit {
    padding: 5px;
    width: 130px;
    border: none;
    border-radius: 5px;
    background-color: rgb(209, 209, 209);
    font-weight: bold;
    transition-duration: 0.5s;
}

#submit:hover {
    background-color: rgb(165, 253, 253);
    color: blue;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}