.account-creation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 89vh;
    padding-top: 5vh;
}

.create-account-title {
    font-family: sans-serif;
    font-size: 36px;
}

.account-creation-div-top {
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
    border: 2px solid black;
    border-bottom: 2px solid grey;
    margin-top: 2vh;
}

.account-creation-input {
    margin: 0px 4%;
}

.signup-select {
    background: rgb(100,100,200);
    padding: 4px 12px;
    margin-right: 10%;
}

.account-creation-submit {
    font-family: sans-serif;
    font-size: 18px;
    background: rgb(200,240,200);
    box-shadow: 3px 3px 6px black;
    border-radius: 6px;
    transition-duration: 120ms;
}

.account-creation-submit:hover {
    cursor: pointer;
    background: rgb(160,220,160);
    transform: translateY(2px);
    box-shadow: 1px 1px 3px black;
}

.enter-dashboard {
    margin-top: 2vh;
    background: rgb(80,80,240);
    padding: 4px 20px;
    font-size: 18px;
    font-family: sans-serif;
    border-radius: 6px;
    color: white;
    box-shadow: 3px 3px 6px black;
}

.enter-dashboard:hover {
    cursor: pointer;
    background: rgb(60,60,245);
    transform: translateY(2px);
    box-shadow: 1px 1px 3px black;
}

