
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --lr-primary: #5e6be5;
    --lr-primary-deep: #4f5bd4;
    --lr-lavender: #f3f0ff;
    --lr-input-bg: #eff3fe;
    --lr-input-border: #e3eafe;
    --lr-ink: #2d3348;
    --lr-muted: #8b92a8;
    --lr-danger: #f0785a;
}

body, html {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    border-color: var(--lr-primary);
    background-color: var(--lr-primary);
}

.label-color {
    color: #131340;
}

.font-w500 {
    font-weight: 500;
}

.text-purple {
    color: var(--lr-primary) !important;
    font-weight: 700;
}

.login-container {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #e8f0fe82;
}

.login_bg_left {
    width: 56%;
    padding: 35px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,#6450d9 0%,#5d63dc 45%,#546fe4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_row {
    display: flex;
    width: 100%;
    max-width: 1140px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid #e0e1e3;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.left-content-wrapper {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 5;
    text-align: center;
}

.badge-text {
    display: inline-block;
    padding: 8px 16px;
    background: #eef3ff;
    color: #4f63e8;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.left-heading {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

    .left-heading span {
        color: #ffffff;
    }

.left-subheading {
    max-width: 470px;
    font-size: 14px;
    color: #fff;
    margin: auto;
    margin-bottom: 20px;
}

.mockup-container {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.login-lng-1 {
    width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.features-grid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-radius: 19px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    color: #4263eb;
    font-size: 17px;
    border: 1px solid #D9DEF4;
}

.feature-text {
}

    .feature-text strong {
        font-size: 12px;
        color: #1e2b4d;
    }

.shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape1 {
    width: 260px;
    height: 260px;
    background: rgb(255 255 255 / 6%);
    right: -120px;
    top: -120px;
    /* opacity: 0.1; */
}

.shape2 {
    width: 150px;
    height: 150px;
    /* background: #ffd14f; */
    left: -70px;
    top: 60px;
    opacity: 0.2;
}

.shape3 {
    width: 180px;
    height: 180px;
    background: rgb(255 255 255 / 11%);
    left: -70px;
    bottom: -70px;
}

.dots {
}

/* ========== RIGHT ========== */
.login_bg_right {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 35px;
    width: 44%;
}

.dots-bottom-right {
}

.authincation-content.style-2,
.login-right-card {
    width: 100%;
}



.remembered-account-box {
    background: #fff;
    border: 1px solid #dddff9;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    transition: .3s;
}

    .remembered-account-box:hover {
        border-color: #5f5ce6;
        box-shadow: 0 8px 22px rgba(90,85,230,.08);
    }

/* LEFT */

.remember-left {
    flex: 1;
}

.remember-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.user-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
}

.user-info h5 {
    margin: 0px;
    font-size: 12px;
    color: #5256d8;
    font-weight: 700;
}

.remember-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */

.btn-remove,
.btn-login-action {
    border: none;
    cursor: pointer;
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}

.btn-remove {
    background: #ef4444;
    color: #fff;
}

    .btn-remove:hover {
        background: #dc2626;
    }

.btn-login-action {
    background: #22c55e;
    color: #fff;
}

    .btn-login-action:hover {
        background: #16a34a;
    }

/* RIGHT */

.remember-right {
    width: 240px;
}

    .remember-right label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #5b5be8;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .remember-right select {
        width: 100%;
        border-radius: 5px;
        border: 1.5px solid #6d63ff;
        outline: none;
        padding: 6px 8px;
        background: #fafaff;
        color: #555;
        cursor: pointer;
        transition: .3s;
        font-size: 12px;
        /*        max-width: 150px;*/
    }

        .remember-right select:focus {
            border-color: #4338ca;
            box-shadow: 0 0 0 4px rgba(99,102,241,.15);
        }

        .remember-right select option {
            color: #444;
        }

/* Responsive */

@media(max-width:768px) {

    .remembered-account-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .remember-right {
        width: 100%;
    }
}














.logo-container-right {
    text-align: center;
    margin-bottom: 18px;
}

.erp-main-logo,
.login_bg_right img.erp-logo {
    width: 110px;
    height: auto;
    display: inline-block;
    margin-bottom: 0;
}

.branch-name-badge,
.login_bg_right .branch-name {
    width: max-content;
    background-color: var(--lr-lavender);
    color: var(--lr-primary);
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-bottom: 15px;
    border: 1px solid #e8e3f8;
    text-align: center;
    justify-content: center;
}

.branch-home-ico {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    border: 1.5px solid #c9c2f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lr-primary);
    font-size: 12px;
    flex-shrink: 0;
    background: #fff;
}

.branch-name-text,
.login_bg_right .branch-name {
    color: #5a5478;
    font-weight: 500;
}

    .branch-name-badge b,
    .branch-name-text b,
    .login_bg_right .branch-name span,
    .login_bg_right .branch-name b {
        color: #2f3a7a;
        font-weight: 700;
    }

.login-welcome {
    color: #566de3;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    text-align: left;
}

.login_bg_right .logo-name-login {
    font-size: 20px;
    font-weight: 700;
    color: var(--lr-ink);
    text-align: left;
    margin-bottom: 14px;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: stretch;
    background: var(--lr-input-bg);
    border: 1px solid #D9DEF4;
    border-radius: 10px;
    overflow: hidden;
    min-height: 52px;
}

.login_bg_right .input-icon-box {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lr-primary);
    font-size: 12px;
    border-right: 1px solid #D9DEF4;
    background: #fff;
}

    .login_bg_right .input-icon-box i,
    .branch-home-ico i,
    .toggle-password i,
    .signin-arrow i,
    .back-too-login i {
        font-style: normal;
        line-height: 1;
    }

.custom-input,
.login_bg_right #LoginSection .form-control,
.login_bg_right #forgotPasswordSection .form-control {
    width: 100%;
    font-size: 12px;
    color: var(--lr-ink);
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto;
    min-height: 50px;
}

.login_bg_right .forgot-input,
.login_bg_right #forgotEmail {
    padding-left: 16px !important;
    background: var(--lr-input-bg) !important;
    border: 1.5px solid var(--lr-input-border) !important;
    border-radius: 14px !important;
}

.input-group-custom:focus-within {
    border-color: #c5cef8;
    background: #f7f9ff;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9aa3b8;
    font-size: 16px;
    user-select: none;
    line-height: 1;
}

    .toggle-password:hover {
        color: var(--lr-primary);
    }

.remember-me-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 18px;
    text-align: left;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--lr-primary);
    cursor: pointer;
}

.checkbox-label {
    font-size: 13px;
    color: var(--lr-muted);
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.btn-main-signin,
#btnbankerlogin.btn-main-signin {
    width: 100%;
    background: linear-gradient(90deg, #6450d9 0%, #5d63dc 45%, #546fe4 100%);
    color: #fff !important;
    border: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    min-height: 50px;
    box-shadow: none !important;
}

    .btn-main-signin:hover {
        opacity: 0.96;
        color: #fff !important;
    }

    .btn-main-signin .btn-label {
        flex: 1;
        text-align: center;
        padding-left: 36px;
    }

.signin-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--lr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-left: auto;
}

.login-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0 10px;
    color: #b0b7c9;
    font-size: 12px;
}

    .login-or-divider::before,
    .login-or-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #d4d7df;
    }

.new-account-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.link-branch {
    color: var(--lr-primary);
    text-decoration: none;
    font-weight: 600;
}

.link-forgot {
    color: var(--lr-danger);
    text-decoration: none;
    font-weight: 600;
}

.back-too-login {
    border: 1.5px solid #e6eaf3;
    background: #fff;
    color: var(--lr-primary);
    border-radius: 10px;
    font-weight: 600;
    box-shadow: none !important;
}

.login-error-text {
    display: block;
    color: var(--lr-danger);
    font-size: 13px;
    margin-top: 10px;
}

/* ========== BRANCH PAGE (reference design) ========== */
.body.branch-code-page {
    --br-purple: #5b54f0;
    --br-purple-deep: #4a43d9;
    background: #6158c9;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.authincation-branch {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    padding: 28px 16px;
    overflow: hidden;
}

.branch-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Soft glow circle layers â€” no border, radial gradient only */
.branch-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 0 !important;
    outline: none;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.06);
    animation: branchGlowPulse 8s ease-in-out infinite;
    will-change: transform, opacity;
}

.branch-img {
    margin-bottom: 12px;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 15px;
}

    .title-container .line {
        height: 2px;
        max-width: 40px;
        flex: 1 1 0%;
        background: rgba(26, 115, 232, 0.57);
    }

    .title-container .title {
        font-size: 15px;
        font-weight: 700;
        color: rgb(27, 54, 93);
        margin: 0px;
    }

.branch-img img {
    width: 100%;
}

.branch-ring-3 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
}

.branch-ring-4 {
    width: 600px;
    height: 600px;
}

.branch-ring-5 {
    width: 700px;
    height: 700px;
}

.branch-ring-6 {
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.06);
}

@keyframes branchGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.94);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

@media (max-width: 767.98px) {
    .branch-ring-1 {
        width: 200px;
        height: 200px;
    }

    .branch-ring-2 {
        width: 300px;
        height: 300px;
    }

    .branch-ring-3 {
        width: 420px;
        height: 420px;
    }

    .branch-ring-4 {
        width: 560px;
        height: 560px;
    }

    .branch-ring-5 {
        width: 700px;
        height: 700px;
    }

    .branch-ring-6 {
        width: 860px;
        height: 860px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .branch-ring {
        animation: none;
        transform: translate(-50%, -50%) scale(1);
    }
}

.branch-dots {
    position: absolute;
    width: 72px;
    height: 96px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.6px, transparent 1.7px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.branch-dots-tl {
    left: 36px;
    top: 36px;
}

.branch-dots-br {
    right: 36px;
    bottom: 48px;
}

.sing_up_brantch,
.branch-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    border: none;
    box-shadow: 0 24px 48px rgba(30, 24, 90, 0.22);
}

.branch-logo-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.body.branch-code-page img.erp-logo {
    width: 100px;
    margin: 0 auto;
    display: block;
}

.branch-title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1f2433;
    letter-spacing: -0.02em;
}

.branch-company {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #5b54f0;
}

.branch-field {
    margin-bottom: 18px;
    text-align: left;
}

.branch-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7289;
    margin-bottom: 5px;
}

.branch-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    /* padding: 6px 12px 6px 8px; */
    border: 1.5px solid #e5e7f0;
    border-radius: 12px;
    background: #fff;
}

    .branch-input-wrap:focus-within {
        border-color: #c7c4f8;
    }

.branch-input-ico {
    width: 40px;
    height: 48px;
    min-width: 45px;
    border-radius: 10px;
    background: #eeebff;
    color: var(--br-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.branch-input {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    min-height: 40px;
    padding: 0 !important;
    font-size: 12px;
    /* color: #1f2433; */
    font-weight: 500;
}

    .branch-input::placeholder {
        color: #b0b7c9;
        font-weight: 400;
    }

.branch-proceed-btn {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 14px;
    background: var(--br-purple);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    box-shadow: none !important;
}

    .branch-proceed-btn:hover {
        background: var(--br-purple-deep);
        color: #fff !important;
    }

    .branch-proceed-btn .btn-label {
        flex: 1;
        text-align: center;
        padding-left: 36px;
    }

    .branch-proceed-btn .signin-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        color: var(--br-purple);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
        margin-left: auto;
    }

.branch-or {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 10px;
    color: #aeb5c7;
    font-size: 12px;
    font-weight: 700;
}

    .branch-or::before,
    .branch-or::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e6eaf3;
    }

    .branch-or span {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #e6eaf3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        letter-spacing: 0.04em;
        font-size: 10px;
    }

.branch-help-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: #f7f7fb;
    border: 1px solid #e8eaf2;
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
    box-shadow: none !important;
}

    .branch-help-card:hover {
        background: #f1f0fa;
    }

.branch-help-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--br-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.branch-help-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .branch-help-text strong {
        font-size: 12px;
        color: #3b3f8c;
        font-weight: 700;
    }

    .branch-help-text small {
        font-size: 10.5px;
        color: #8b92a8;
        line-height: 1.35;
    }

.branch-help-caret {
    color: #b0b7c9;
    flex-shrink: 0;
    font-size: 12px;
}

.branch-alert {
    border-radius: 12px;
    font-size: 12px;
    padding-right: 1rem;
    margin-bottom: 0;
}

.login-circle-1,
.login-circle-2,
.login-circle-3 {
    display: none;
}

/* ========== RESPONSIVE: LOGIN ========== */
@media (max-width: 991.98px) {
    .login-container {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 14px;
        align-items: flex-start;
    }

    .login_row {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }

    .login_bg_left,
    .login_bg_right {
        width: 100%;
        min-height: auto;
        min-width: 0;
    }

    .login_bg_right {
        order: 1;
        padding: 28px 22px;
    }

    .login_bg_left {
        order: 1;
        display:none;
        padding: 28px 22px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    body.login-page-design,
    html.h-100 {
        height: auto;
        min-height: 100%;
        overflow-x: hidden;
    }

    .login-container {
        height: auto !important;
        min-height: 100dvh;
        padding: 10px;
        display: block;
    }

    .login_row {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        margin: 0;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    }

    /* Form first on phone */
    .login_bg_right {
        order: 1;
        width: 100% !important;
        padding: 22px 16px 18px;
    }

    .login_bg_left {
        order: 2;
        width: 100% !important;
        padding: 22px 16px 24px;
    }

    .left-content-wrapper {
        max-width: 100%;
    }

    .badge-text {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .left-heading {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .left-subheading {
        font-size: 13px;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .mockup-container {
        border-radius: 16px;
        max-width: 320px;
        margin: 0 auto;
    }

    .login-lng-1 {
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px;
        border-radius: 14px;
        box-shadow: none;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .feature-text strong {
        font-size: 11px;
    }

    .authincation-content.style-2,
    .login-right-card {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .login_bg_right .logo-name-login,
    .logo-name-login {
        font-size: 20px !important;
        margin-bottom: 16px;
    }

    .login_bg_right img.erp-logo,
    .erp-main-logo {
        width: 130px;
        max-width: 100%;
    }

    .branch-name-badge,
    .login_bg_right .branch-name {
        font-size: 12px;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .input-group-custom {
        min-height: 48px;
    }

    .btn-main-signin,
    #btnbankerlogin.btn-main-signin {
        min-height: 48px;
        font-size: 15px;
    }
 

    .new-account-links {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }

    .remembered-account-box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .remember-actions {
        flex-wrap: wrap;
    }

    .shape1,
    .shape2,
    .shape3 {
        opacity: 0.5;
    }

    .login-circle-1,
    .login-circle-3 {
        display: none;
    }

    /* Branch page mobile (keep) */
    .sing_up_brantch,
    .branch-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px 24px;
        border-radius: 22px;
    }

    .branch-title {
        font-size: 24px;
    }

    .branch-proceed-btn .btn-label {
        padding-left: 0;
    }

    .branch-code-page {
        margin: 0;
        padding: 0;
    }

    .branch-dots-tl {
        left: 16px;
        top: 16px;
    }

    .branch-dots-br {
        right: 16px;
        bottom: 20px;
    }

    .branch-dots {
        width: 56px;
        height: 72px;
    }
}

@media (max-width: 480px) {
 

    .login_row {
        border-radius: 14px;
    }

    .login_bg_right,
    .login_bg_left {
        padding: 18px 14px;
    }

    .left-heading {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
    }

    .login_bg_right .logo-name-login,
    .logo-name-login {
        font-size: 18px !important;
    }

    .new-account-links { 
        gap: 20px;
    }
}

.branch-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    gap: 7px;
}
