.password {
    background-color: #FFF !important;
}

.content {
    margin: 12% auto;
    padding-top: 12px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2em;
    box-shadow: 8px 2px 24px #777;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message {
    color: gray;
    font-weight: 300;
    text-align: center;
    font-size: medium;
    margin: 2vh 4%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    display:flex;
    justify-content: center;
}

@media screen and (max-width: 540px) {
    .content {
        margin: 32% auto;
        max-width: 80%;
        box-shadow: none;
    }

    .centered {
        row-gap: 2em;
    }
}

@media screen and (max-width: 300px) {
    footer {
        font-size: smaller;
    }
}