.auth {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.auth__layout {
    display: flex;
    flex-direction: column;
}

.auth__visual {
    position: relative;
    height: 212px;
    margin-bottom: 32px;
}

.auth-visual {
    height: 100%;
}

.auth-visual__bg {
    position: absolute;
    inset: 4px;
    border-radius: 32px;
    overflow: hidden;
}

.auth-visual__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/hero-bg.jpg) no-repeat center / cover;
    z-index: -2;
}

.auth-visual__overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: absolute;
    top: 20px;
    left: 14px;
    right: 12px;
    bottom: 15px;

    padding: 16px;
    border-radius: 32px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;
}

.auth-visual__title {
    font-size: 16px;
    line-height: 24px;
    color: var(--pure-white);
}

.auth-visual__brand {

}

/* Form */
.wyndham-auth-form {
    color: var(--medium-grey);
}

.wyndham-form-prompt {
    color: var(--dark-grey);
    font-family: Montserrat, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 32px;
}

.wyndham-form-field {
    margin-bottom: 32px;
}
.wyndham-auth-form input {
    font-size: 18px;
    padding: 18px 32px;
    background: var(--ecru-60);
}

.wyndham-checkbox-field {
    font-size: 14px;
    line-height: 20px;
    margin: 56px 0 20px;
}

.wyndham-form-button {
    margin-bottom: 16px;
}

.wyndham-form-button .button {
    width: 100%;
}

.wyndham-form-footer {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.wyndham-form-footer a {
    color: var(--honey);
    text-decoration: none;
}

@media (min-width: 576px) {
    .auth-visual {
        padding: 20px 25px 15px 30px;
    }
    .auth-visual__overlay {
        left: 30px;
        right: 25px;
        padding: 20px 37px 17px 39px;
    }

    .auth-visual__title {
        font-size: 18px;
    }
    .auth-visual__title br {
        display: none;
    }
}

@media (min-width: 1024px) {
    .auth__layout {
        flex-direction: row-reverse;
        gap: 48px;
    }

    .auth__visual,
    .auth__form {
        flex: 1;
        height: auto;
    }

    .auth__visual {
        margin-bottom: 0;
    }

    .auth-visual {
        padding: 20px 25px 15px 30px;
    }

    .auth-visual__overlay {
        left: 30px;
        right: 25px;
        top: 50%;
        bottom: 32px;
        padding: 20px 37px 17px 39px;
    }

    .auth-visual__title {
        font-size: 36px;
        line-height: 44px;
    }

    .auth-visual__brand img {
        width: 180px;
    }

    .auth__form {
        padding: 48px;
    }
}
