body {
    background-color: white;
    background-image: none;
}

.form-wrapper {
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-wrapper {
        max-width: 22.5rem;
    }
}

span.link {
    width: 100%;
    display: flex;
    justify-content: center;
}

h1 {
    font-size: 1.75em;
    margin: 0;
    margin-top: 2rem;
}

h2 {
    font-size: 1.5em;
    margin: 0.5rem;
}

img {
    height: 3rem;
}

.login-form, form {
    
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .login-form, form {
        width: 22.75rem;
    }
}

.client-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.divider {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: rgb(112, 112, 112);
}

.divider > hr {
    height: 0.0625rem;
    border: none;
    background-color: rgb(187, 187, 187);
    width: 100%;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    align-items: start;
    justify-content: center;
}

@media (min-width: 768px) {
   .wrapper {
    align-items: center;
   }
}
