.login-form {
    width: 100vw;
    height: 50dvh;
    margin: 5dvh 0 0 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
h1 {
    margin-top: 100px;
}

.enter-username,
.enter-password {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 75%;
}

.login-form label {
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: left;
}

.enter-username input,
.enter-password input {
    font-family: "Asap Condensed", sans-serif;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 10px;
    width: 70vw;
}

.login-form > input {
    font-family: "Asap Condensed", sans-serif;
    background-color: var(--pokemon-blue);
    padding: 10px;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
}
