@media only screen and (min-width: 500px) {
    #box-center {
        display: grid;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
}

#box {
    border-radius: 10px;
    width: 100%;
    padding: 20px;
}

@media only screen and (min-width: 500px) {
    #box {
        width: 500px;
    }
}

#box-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#box-logo img {
    height: 45px;
}

.form {
    margin-top: 40px;
}

.form .forgot-password {
    text-align: left;
}

.form .forgot-password a {
    text-decoration: none;
    font-size: var(--font-small)
}