.main-wrapper {
    min-height: 90vh;
    margin: 5vh auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

img {
    max-width: 80vw;
    max-height: 150px;
}

h2 {
    text-align: center;
}

.login form {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    row-gap: inherit;
    align-items: center;
}

.login-password {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

input[type="password"] {
    background-color: var(--red);
    padding: 10px;
    font-size: 1.8rem;
    color: var(--white);
    width: 200px;
    text-align: center;
}

.login-buttons button {
    width: 15rem;
}

.errors p {
    text-align: center;
}