.account-creator{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.account-creator .account-photo-hint{
    font-size: 0.7em;
}

.account-creator .account-photo-options{
    position: absolute;
    top: 150px;
    left: 20px;
    display: none;
    overflow-x: scroll;
    max-width: 200px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    padding: 5px;
}

.account-creator .account-photo{
    height: 100px;
    width: 100px;
    margin: 20px;
    cursor: pointer;
}

.account-creator .account-photo-options .account-photo-option{
    height: 80px;
    width: 80px;
    margin: 5px;
    cursor: pointer;
}

.account-creator .account-photo,
.account-creator .account-photo-options .account-photo-option{
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.account-creator .username-field,
.account-creator .password-field,
.account-creator .submit-button{
    padding: 10px;
}

.sign-in .sign-in-button,
.account-creator .sign-in-button{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sign-in .sign-in-button span,
.account-creator .sign-in-button span{
    font-size: 0.8em;
    text-align: center;
    margin-bottom: 5px;
}

.sign-in{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sign-in .username-field,
.sign-in .password-field,
.sign-in .submit-button{
    padding: 10px;
}

.sign-in #signInError,
.account-creator #signUpError{
    color: red;
    font-size: 0.8em;
    margin-bottom: 5px;
}
