.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.backdrop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vw;
    height: 90vh;
    margin: 1vh 1vw;
    border-radius: 50px;
    box-shadow: 0px 0px 20px 20px rgba(238, 238, 238, 0.8);
    background-color: rgb(238, 238, 238);
}

.login_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    border: 1px solid rgba(175, 175, 175, 0.5);
    box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.7);
    background-color: rgb(223, 234, 243);
    border-radius: 20px;
}

.username_container, .password_container {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    margin: 0.5rem;
}

.username_header_container, .password_header_container {
    margin: 0.25rem;
}

.username_input, .password_input {
    padding: 0.5rem;
    border-radius: 1rem;
    border: none;
}

.buttons_container {
    display:  flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    border: 1px sold gray;
    margin: 1rem;
}

.submit_button, .create_button {
    padding: 0.5rem;
    border-radius: 1rem;
    border: none;
    background-color: rgb(245, 245, 245);
}

.submit_button:hover, .create_button:hover {
    border: 0.1rem solid rgb(179, 179, 179);
    padding: 0.43rem;
}
