/*register form*/

#formContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.halfFormContainer{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-input{
    width: 400px;
    height: 30px;
    background-color: #CECCDD;
}

.form-half-input{
    width: 195px;
    height: 30px;
    background-color: #CECCDD;
}

.formItem{
    display: flex;
    flex-direction: column;
}

#submitButton{
    background-color: #DE3400;
    color: white;
    height: 50px;
    width: 200px;
}

/* login page */

.registerLink{
    text-decoration: none;
    color: deepskyblue;
}