.customer-login-page {
    padding: 20px 40px 28px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef6fb 55%, #fff 100%);
    color: #00142e;
}

.customer-login-shell {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.customer-login-header {
    margin: 0 0 16px;
    text-align: left;
}

.customer-login-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 6px;
    text-align: left;
}


.customer-login-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    border: 1px solid #d9e2ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 20, 46, .14);
}

.customer-login-brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: #00142e;
    color: #fff;
    text-align: left;
}

.customer-login-brand h2 {
    color: #fff;
    text-align: left;
}

.customer-login-brand strong {
    color: #fff;
    text-align: left;
}

.customer-login-brand-main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 30px;
    text-align: left;
}


.customer-login-logo {
    align-self: flex-start;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.customer-login-brand-copy {
    max-width: 360px;
}

.customer-login-brand-copy,
.customer-login-feature-copy,
.customer-login-brand-footer-copy {
    color: #dbeafe;
    text-align: left;
}

.customer-login-features {
    display: grid;
    width: 100%;
    max-width: 370px;
    gap: 16px;
    margin-top: 16px;
    text-align: left;
}

.customer-login-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    text-align: left;
}

.customer-login-feature > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.customer-login-feature-icon,
.customer-login-avatar {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
}

.customer-login-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .12);
    color: #7dd3fc;
}

.customer-login-feature-icon svg {
    width: 22px;
    height: 22px;
}

.customer-login-brand-footer {
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #0b315a;
    text-align: left;
}

.customer-login-account-row {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 18px;
}

.customer-login-account-row > div {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.customer-login-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 28px 24px;
    background: #fff;
}

.customer-login-form-inner {
    width: 100%;
    max-width: 480px;
}

.customer-login-avatar {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: 0 0 0 6px rgba(239, 246, 255, .7);
}

.customer-login-avatar svg {
    width: 32px;
    height: 32px;
}

.customer-login-field {
    position: relative;
}

.customer-login-field-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #64748b;
    transform: translateY(-50%);
    pointer-events: none;
}


.customer-login-field input {
    padding-left: 48px !important;
}

.customer-login-password-field input {
    padding-right: 52px !important;
}

.customer-login-field input:focus {
    border-color: #00a3b7 !important;
    box-shadow: 0 0 0 2px rgba(0, 163, 183, .22) !important;
    outline: none;
}
.customer-login-password-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #64748b;
    transform: translateY(-50%);
}

.customer-login-password-toggle:hover {
    background: #f1f5f9;
    color: #00142e;
}

.customer-login-password-toggle:focus-visible {
    outline: 2px solid #00a3b7;
    outline-offset: 2px;
}

.customer-login-password-toggle svg {
    width: 20px;
    height: 20px;
}
.login-link {
    display: inline-block;
    color: #00a3b7;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(187, 173, 213, .7);
    transition: color .25s ease, border-color .25s ease, transform .2s ease;
}

.login-link:hover {
    color: #0090a3;
    border-color: #00a3b7;
    transform: translateY(-1px);
}

.customer-login-submit {
    min-width: 230px;
    min-height: 52px;
    background: #00142e;
    color: #fff;
}

.customer-login-submit:hover {
    background: #00142e;
    transform: translateY(-1px);
}

.customer-login-submit svg {
    width: 20px;
    height: 20px;
}

.customer-login-trust {
    display: none;
}

@media (min-width: 1024px) {
    .customer-login-page {
        padding-top: 22px;
        padding-bottom: 28px;
    }

    .customer-login-card {
        flex-direction: row;
        min-height: 500px;
    }

    .customer-login-brand {
        flex: 0 0 42%;
        width: 42%;
    }

    .customer-login-brand-main {
        padding: 30px 36px;
    }

    .customer-login-brand-footer {
        padding-right: 36px;
        padding-left: 36px;
    }

    .customer-login-form-panel {
        flex: 0 0 58%;
        width: 58%;
        padding: 30px 42px;
    }

    .customer-login-trust {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-top: 14px;
    }
}

@media (max-width: 639px) {
    .customer-login-page {
        padding: 20px 12px 28px;
    }

    .customer-login-header {
        margin-bottom: 22px;
    }

    .customer-login-brand-main,
    .customer-login-brand-footer {
        padding-right: 24px;
        padding-left: 24px;
    }

    .customer-login-submit {
        width: 100%;
        min-width: 0;
    }
}

.customer-login-field > .customer-login-field-icon,
.customer-login-field > .customer-login-password-toggle {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.customer-login-field > .customer-login-field-icon {
    left: 16px !important;
    z-index: 2;
}

.customer-login-field > .customer-login-password-toggle {
    right: 16px !important;
    z-index: 3;
}

.customer-login-password-field input {
    padding-left: 48px;
    padding-right: 52px;
}

.customer-login-account-row .customer-login-feature-icon {
    margin-top: 2px;
}

@media (min-width: 1024px) and (max-width: 1320px) {

    .customer-login-logo {
        width: 180px;
        margin-bottom: 18px;
    }

    .customer-login-avatar {
        width: 52px;
        height: 52px;
    }

    .customer-login-form-inner .form-login {
        margin-top: 22px;
    }

    .customer-login-form-panel .field.password {
        margin-top: 16px;
    }

    .customer-login-submit {
        min-height: 52px;
    }
}

.customer-login-trust li {
    min-width: 190px;
}

.customer-login-trust svg {
    width: 24px;
    height: 24px;
}
@media (min-width: 1024px) {
    .customer-login-card {
        align-items: stretch;
    }

    .customer-login-brand {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .customer-login-form-panel {
        flex: 0 0 58%;
        max-width: 58%;
    }
}

.customer-login-account-row {
    display: flex;
}

.customer-login-account-row .customer-login-feature-icon {
    flex: 0 0 40px;
    min-width: 40px;
    margin-right: 4px;
}

.customer-login-account-row > div {
    padding-left: 2px;
}

.customer-login-password-toggle svg {
    display: block;
}

@media (max-width: 1023px) {
    .customer-login-brand {
        display: none !important;
    }

    .customer-login-card {
        display: block;
    }

    .customer-login-form-panel {
        width: 100%;
        padding: 24px 20px 28px;
    }

    .customer-login-form-inner {
        max-width: 520px;
        margin: 0 auto;
    }

    .customer-login-avatar {
        width: 48px;
        height: 48px;
    }

    .customer-login-avatar svg {
        width: 28px;
        height: 28px;
    }
}
