body.split-bg-v2 {
    background: #fff;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: block;
}
.split-container-v2 {
    display: flex;
    min-height: 100vh;
    height: 100vh; /* Make entire split take full viewport height */
    overflow: hidden; /* Prevent outer scrollbar */
}
.split-left-v2 {

    background: #fff;
    flex: 1 1 0;
    overflow-y: auto; /* Only allow left side to scroll vertically */
    min-width: 0;     /* Prevent content overflow */
    background: #fff; /* Keep original background color */
    padding: 10vh 0px;
}
.split-right-v2 {
    flex: 1 1 0;
    overflow-y: auto;
    background: var(--light-orange-background);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    min-height: 100vh;
    padding: 0;
}

.login-row-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 2px;
}
.remember-v3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.98rem;
    color: var(--primary-brand-color);
    font-weight: 500;
    cursor: pointer;
}

.forgot-link-v3 {
    text-align: right;
    color: var(--primary-brand-color);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.forgot-link-v3:hover {
    color: #b98c5e;
    text-decoration: none;
}
.login-card-v3 {
    width: 100%;
    /* max-width: 370px; */
    margin: auto;
    display: flex;
    flex-direction: column;
    /* align-items: stretch; */
    box-sizing: border-box;
    padding: 0px 5vh;
    /* padding: 24px 0px 70px 0px; */
    max-width: 440px;
}

.login-header-v3 {
    margin-bottom: 32px;
}
.login-title-v3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-brand-color);
    margin-top: 20px;
    margin-bottom: 13px;
    line-height: 1.15;
}
.login-subtitle-v3 {
    font-size: 1.08rem;
    color: #888;
    margin-bottom: 0;
}
.login-form-v3 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* margin-bottom: 18px; */
}

.login-form-v3 input[type="email"],
.login-form-v3 input[type="password"],
.login-form-v3 input[type="text"] {
    padding: 8px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    /*background: #fafbfc;*/
    transition: border 0.2s, box-shadow 0.2s;
}
.login-form-v3 input:focus {
    /* border: 1.5px solid #79b397a6; */
    outline: none;
    /* box-shadow: 0 0 0 2px #acd1bf72; */
}
.login-form-v3 input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.login-form-v3 input::placeholder {
    color: #bbb !important;
    opacity: 1;
}
.login-btn-v3 {
    width: 100%;
    background: var(--primary-brand-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 12px rgba(35,64,50,0.10);
    letter-spacing: 0.5px;
}
.login-btn-v3:hover {
    background: var(--dark-green-hover);
    color: #fff;
}
.login-bottom-v3 {
    text-align: center;
    font-size: 1.01rem;
    color: #888;
    margin-top: 18px;
}
.login-bottom-v3 a {
    color:var(--primary-brand-color);
    text-decoration: none;
}

.login-bottom-v3 a:hover {
    color: #b98c5e;
    text-decoration: none;
}

.login-bottom-v3 button {
    color:var(--primary-brand-color);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}
.login-bottom-v3 button:hover  {
    color: #b98c5e;
}

.password-strength {
    height: 4px;
    margin-top: 5px;
    border-radius: 2px;
    background: #eee;
}
.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.strength-weak {
    background: #dc3545;
    width: 25%;
}
.strength-medium {
    background: #ffc107;
    width: 50%;
}
.strength-strong {
    background: #28a745;
    width: 75%;
}
.strength-very-strong {
    background: #20c997;
    width: 100%;
}

.messages {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    background: #ededed;
}

.login-outer-container {
    margin-top: 80px; /* You can adjust this value */
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-logo-container {
    display: none;
}

.cancel-btn-container {
    display: flex;
    justify-content: center;
    /* margin-top: 20px; */
}

.cancel-btn {
    background-color: rgb(238, 238, 238);
    color: #575757;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .login-outer-container {
        margin-top: 32px;
    }
}

@media (max-width: 700px) {
    .mobile-logo-container {
        display: block;
        text-align: center;
        padding-top: 5vh;
        padding-bottom: 3vh;
        margin: auto;
    }
    .mobile-logo {
        width: 220px;
        height: auto;
    }
    .split-container-v2 {
        flex-direction: column;
    }
    .split-right-v2 {
        display: none !important;
    }
    .split-left-v2 {
        padding: 0;
        width: 100%;
        min-height: 100vh;
        background: #fff;
    }
    .login-card-v3 {
        max-width: 400px;
        width: 90%;
        margin: 18px auto 60px auto;
        padding: 24px 4vw 70px 4vw;
        box-sizing: border-box;
    }
    .login-form-v3 {
        gap: 10px;
        margin-bottom: 10px;
    }
}

.kenzie-marketing {
    padding: 15vh 2.7rem 30px 2.7rem;
    /* text-align: left; */
    color: #222;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}

.kenzie-marketing-content {
    flex: 1;
}

.kenzie-marketing h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.2em;
}

.kenzie-marketing .kenzie-bold {
    font-weight: 900;
}

.kenzie-marketing .kenzie-orange {
    color: #FF5E1A;
    font-weight: 800;
}

.kenzie-marketing h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.kenzie-marketing p {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: #333;
    font-size: 1.5rem;
    margin-top: 1em;
    line-height: 1.7;
}

.hipaa-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 20px 0;
}

.hipaa-logo-1 {
    width: 200px;
    height: auto;
}
.hipaa-logo-2{
    width: 120px;
    height: auto;
}
.kenzie-ai-logo {
    width: 250px;
    align-self: center;
    margin-bottom: 10px;
}
.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: #6b7280;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.2s;
}
.back-link:hover {
    color: #23422e;
    text-decoration: none;
}

@media (min-width: 600px) and (max-width: 768px) {
    .kenzie-marketing {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    
    .kenzie-marketing h1 {
        font-size: 2rem;
        margin-bottom: 0.1em;
    }
    .kenzie-marketing h2 {
        font-size: 1.6rem;
    }
    .kenzie-marketing p {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    .hipaa-logo-1 {
        width: 120px;
    }
    .hipaa-logo-2{
        width: 80px;
    }
    .kenzie-ai-logo {
        max-width: 200px;
    }

}
@media (min-width: 768px) and (max-width: 1024px) {
    .kenzie-marketing {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .kenzie-marketing .kenzie-ai-logo {
        max-width: 300px;
    }
    .kenzie-marketing h1 {
        font-size: 2.2rem;
        margin-bottom: 0.1em;
    }
    .kenzie-marketing h2 {
        font-size: 1.8rem;
    }
    .kenzie-marketing p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

@media (min-width: 1024px) {
    .kenzie-marketing {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .kenzie-marketing .kenzie-ai-logo {
        max-width: 300px;
    }
    .kenzie-marketing h1 {
        font-size: 2.5rem;
        margin-bottom: 0.1em;
    }
    .kenzie-marketing h2 {
        font-size: 2rem;
    }
    .kenzie-marketing p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}