.login-modal-wrapper {
    border: 1px solid black;
    position: fixed;
    z-index: 1500;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.show-login-modal {
    display: flex;
}

.login-modal {
    border-radius: 1.5rem;
    background-color: white;
    width: 30rem;
    height: auto;
}

.login-modal-header {
    text-align: center;
}

.login-modal-body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
}

.login-modal-body input {
    width: auto;
    height: 3.5rem;
    border-radius: 1rem;
    padding: 1rem;
    font-size: medium;
}

.login-button {
    border: none;
    height: 3.5rem;
    font-size: 2rem;
    background-color: black;
    color: white;
    border-radius: 1rem;
    cursor: pointer;
}

.login-button:hover {
    background-color: rgb(56, 56, 56);
}

.login-modal-footer {
    border-top: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.create-button {
    border: none;
    width: 100%;
    height: 3.5rem;
    font-size: 2rem;
    background-color: black;
    color: white;
    border-radius: 1rem;
    cursor: pointer;
}

.close-login-modal {
    background-color: transparent;
    border: none;
    width: fit-content;
    border-radius: 5rem;
    cursor: pointer;
}