.sign-container {
    background: #ffffff;
    min-height: 100vh;
}

.sign-header {
    padding: 20px;
}

.sign-header .logo-header img {
    max-width: 132px;
}

.sign-image {
    width: 100%;
    height: 45.33vw;
    max-height: 300px;
}

.sign-in .sign-image {
    background: url("../img/login_mobile.jpg") center / cover no-repeat;
}

.sign-up .sign-image {
    background: url("../img/signup_mobile.jpg") center / cover no-repeat;
}

.forgot-password .sign-image {
    background: url("../img/forgot_mobile.jpg") center / cover no-repeat;
}

.sign-form-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sign-form {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 30px 30px 0 0;
    margin-top: -37px;
}

.sign-form .form-control {
    line-height: 1.54;
    padding: 0.5em 1.2em;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.sign-form .btn {
    width: 100%;
}

.sign-form .lost_password a {
    color: #9B9B9B;
    text-decoration: none;
}

.sign-footer {
    border-top: 1px solid #F0F2F5;
}

.agree-label a {
    text-decoration: none;
}

@media (min-width: 768px) {
    .sign-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 100px 1fr;
        grid-column-gap: 0;
        grid-row-gap: 0;
        min-height: 100vh;
    }

    .sign-header {
        grid-area: 1 / 1 / 2 / 2;
        padding-left: var(--ltu-content-x-padding);
        padding-right: var(--ltu-content-x-padding);
    }

    .sign-header .logo-header {
        max-width: 680px;
        margin: 0 auto;
    }

    .sign-header .logo-header img {
        max-width: 217px;
    }

    .sign-image {
        grid-area: 1 / 2 / 3 / 3;
        max-height: none;
        height: 100%;
    }

    .sign-form {
        grid-area: 2 / 1 / 3 / 2;
        margin: 0;
    }

    .sign-in .sign-image {
        background: url("../img/login_full.jpg") center / cover no-repeat;
    }

    .sign-up .sign-image {
        background: url("../img/signup_full.jpg") center / cover no-repeat;
    }

    .forgot-password .sign-image {
        background: url("../img/forgot_full.jpg") center / cover no-repeat;
    }

    .sign-form-wrap {
        max-width: 680px;
    }

    .sign-form {
        padding-left: var(--ltu-content-x-padding);
        padding-right: var(--ltu-content-x-padding);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sign-form .btn {
        max-width: 320px;
    }
}