.login-logo {
    max-width: 320px;
    width: 100%;
    margin-bottom: 30px;
}

.login-logo a {
    display: flex;
}

.login-container {
    display: flex;
    min-height: 100vh;
    background: white;
    width: 100%;
}

.login-wrapper {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-inner {
    max-width: 600px;
    width: 100%;
}

.account-benefits {
    flex: 1;
    padding: 60px 60px;
    border-left: solid 1px var(--border-color);
    height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--light-blue);
    background-image: url(../../images/login-bg3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.account-benefits__overlay {
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .7;
}

form.webko-login-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.webko-login-form .input-field {
    display: flex;
    flex-direction: column;
}

.webko-login-form .input-field label {
    font-weight: 600;
    font-size: 14px;
}

.webko-login-form .input-field:not(.remember) label {
    margin-bottom: 5px;
}

.webko-login-form .input-field.remember {
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.webko-login-form .input-field:not(.remember) input {
    border: solid 1px var(--border-color);
    padding: 15px 10px;
    border-radius: 4px;
    height: auto;
    width: 100%;
    font-size: 16px;
}

.webko-login-form .input-field input::placeholder {
    font-style: normal;
}

.webko-login-form .input-field input:focus-visible {
    outline-color: var(--blue-color);
}

.webko-login-form .input-field.remember input {
    display: none;
}

.webko-login-form .input-field.remember label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.webko-login-form .input-field.remember label:before {
    content: "";
    background: white;
    border: solid 1px #ddd;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: flex;
}

.webko-login-form .input-field.remember input:checked+label:before {
    background: url(../../images/input-check.svg) no-repeat center;
    background-color: var(--blue-color);
    background-size: 12px;
    border-color: var(--blue-color);
}

.webko-login-form .input-field.submit button {
    background-color: var(--blue-button);
    color: var(--white-color);
    transition: .2s all;
}

.webko-login-form .input-field.submit button:hover {
    background-color: var(--blue-button-hover);
}

.login-container .login-heading h2 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 35px;
}

.login-container .subtitle {
    font-size: 14px;
    opacity: .5;
    line-height: 1.4;
}

.login-container .login-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.webko-login-form .additional,
.webko-login-form .login-links {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.webko-login-form .additional a.nav-link-a,
.webko-login-form .login-links a {
    text-decoration: none;
    color: #121212;
    opacity: .5;
    transition: opacity .1s ease;
    font-weight: 400;
    font-size: 14px;
}

.webko-login-form .additional a.nav-link-a:hover,
.webko-login-form .login-links a:hover {
    opacity: 1;
}

.login-container p.copyright {
    font-size: 14px;
    opacity: .3;
}

.webko-login-form span.input-field-error-text {
    font-size: 14px;
    color: red;
    margin-top: 5px;
    font-style: italic;
}

.notice-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}

.notice.notice-type-success {
    background: var(--message-color-bg);
    color: var(--message-color);
    padding: 20px;
}

.notice.notice-type-error {
    background: var(--error-color-bg);
    color: var(--error-color);
    padding: 20px;
}

.benefit {
    display: flex;
}

.benefit svg {
    flex-shrink: 0;
    margin-right: 10px;
    fill: var(--blue-color);
}

.account-benefits ul {
    line-height: 1.6;
    padding: 0;
    list-style: none;
}

.account-benefits ul li:before {
    content: "-";
    margin-right: 10px;
}

.account-benefits .button.btn-transparent-black {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 20px;
}

.login-password-reset {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    padding: 40px;
    border: solid 1px var(--border-color);
    margin: auto;
}

.auth-page-password-reset .login-container {
    justify-content: center;
    align-items: center;
    background: transparent;
    width: auto;
}

.account-benefits__wrapper {
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.account-benefits h2 {
    font-size: 45px;
    line-height: 1.2;
}

.account-benefits .benefit h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.account-benefits .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    padding-bottom: 40px;
}

body:not(.auth-page-sign-up) .account-benefits .benefits-grid {
    border-bottom: solid 1px #e2e2e2;
}

.login-copyright {
    z-index: 2;
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-40%, 0%);
    font-size: 14px;
    opacity: .4;
}

a.login-back {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    background-image: url(../../images/chevron-left.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: solid 1px var(--border-color);
    border-radius: 100px;
    transition: .1s ease;
    cursor: pointer;
}

a.login-back:active {
    transform: scale(0.9);
}

@media (max-width:1200px) {
    .account-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-benefits h2 {
        font-size: 2rem;
    }
}

@media (max-width:1024px) {
    .login-wrapper {
        min-height: 50vh;
    }

    .login-container {
        flex-direction: column;
    }

    .account-benefits {
        border-left: none;
        height: auto;
    }
}

@media (max-width:767px) {
    .login-container {
        min-height: 0;
        width: 100%;
    }

    .login-wrapper {
        min-height: 0;
        padding: 20px;
        justify-content: flex-start;
        padding: 100px 40px 60px 40px;
    }

    .account-benefits {
        padding: 60px 30px 100px 30px;
    }

    .account-benefits .benefits-grid {
        margin-bottom: 20px;
        padding-bottom: 30px;
    }

    .login-container .login-heading h2 {
        font-size: 30px;
    }

    .account-benefits__overlay {
        opacity: .5;
    }
}