@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;
}

#box .form {
    margin-top: 40px;
}

#box #forgot-password-bar {
    text-align: center;
    margin-top: 30px;
}

#box #forgot-password-bar .title {
    font-size: var(--font-large);
    font-weight: 500;
}

#box #forgot-password-bar .description {
    margin-top: 10px;
    color: grey;
}