.login-ctnr {
    display: block;
    width: 100%;
    padding: 42px 0;
    background-size: cover;
    background-position: center;
}

.auth-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(520px, 760px);
    gap: 40px;
    padding: 0 clamp(24px, 5vw, 80px);
    min-height: min(820px, calc(100vh - 180px));
    align-items: center;
}

.login-msg-ctnr,
.login-form {
    width: auto !important;
}

.login-msg-ctnr {
    background: linear-gradient(95deg, rgba(4, 22, 18, 0.58), rgba(4, 22, 18, 0.24));
    border-radius: 20px;
    padding: 34px 30px;
    backdrop-filter: blur(1px);
}

.login-msg-ctnr h1 {
    font-size: 46px !important;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #f6fff8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.login-msg-ctnr p {
    font-size: 15px !important;
    line-height: 1.75;
    max-width: 580px;
    color: #e8f7ea;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.login-frm-bx {
    width: 100%;
    max-width: 760px;
    padding: 34px !important;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(4, 24, 20, 0.2);
}

.login-sign-up-tab {
    max-width: 380px;
    width: 100%;
    margin: 0 auto 18px;
}

.login-sign-up-tab span {
    font-size: 14px !important;
    font-weight: 600;
}

.login-form input {
    margin: 14px 0 !important;
    width: 100%;
    height: 46px;
    padding: 10px 16px !important;
    border: 1px solid #cfd8cf !important;
    font-size: 14px !important;
    line-height: 1.4;
    background: #fff;
}

.login-form input:focus {
    outline: none;
    border-color: #2f7a3b !important;
    box-shadow: 0 0 0 3px rgba(47, 122, 59, 0.16);
}

.login-form input[type="checkbox"] {
    width: auto;
    margin: 0 !important;
    height: auto;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.login-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #234523;
}

.forgot-password-row {
    text-align: right;
    margin-top: 12px;
}

.forgot-password-link {
    color: #0d5c0d;
    font-size: 13px !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #084308;
}

.login-frm-bx .sbmt-ctnr {
    margin-top: 8px;
}

.login-frm-bx .sbmt-ctnr button {
    font-size: 14px !important;
    padding: 10px 34px;
    min-width: 110px;
}

.register-login-row {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.register-login-link {
    color: #0d5c0d;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.register-login-link:hover {
    color: #084308;
    text-decoration: underline;
}

.header-all .hed-nav > li > a.nav-link {
    font-size: 16px !important;
}

.header-all .hed-nav > li.mobile-none .profile-nav {
    font-size: 16px !important;
}

@media (max-width: 1025px) {
    .auth-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
        min-height: auto;
    }

    .login-msg-ctnr,
    .login-form {
        width: 100%;
    }

    .login-msg-ctnr {
        padding: 28px 22px;
    }

    .login-form {
        padding: 8px 0 20px;
    }

    .login-frm-bx {
        padding: 24px;
        border-radius: 20px;
    }
}
