.customer-auth-page {
    padding-top: 132px;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 12% 10%, rgba(92, 157, 245, 0.16), transparent 35%),
        radial-gradient(circle at 84% 80%, rgba(200, 243, 241, 0.32), transparent 36%),
        #f7fbff;
}

.customer-auth-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.customer-auth-card {
    overflow: hidden;
    border: 1px solid rgba(92, 157, 245, 0.15);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(15, 39, 74, 0.14);
}

.customer-auth-visual {
    position: relative;
    min-height: 100%;
    padding: 34px;
    color: #ffffff;
    background:
        linear-gradient(140deg, rgba(12, 58, 130, 0.92), rgba(47, 128, 237, 0.88)),
        url('/assets/media/cleaning/about-2.jpg') center center / cover no-repeat;
}

.customer-auth-visual h3 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 900;
}

.customer-auth-visual p {
    margin: 12px 0 0;
    opacity: 0.95;
    font-weight: 600;
}

.customer-auth-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.customer-auth-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.customer-auth-feature-list i {
    font-size: 1rem;
}

.customer-auth-form {
    padding: 36px 36px 32px;
}

.customer-auth-title {
    margin: 0;
    color: #25324a;
    font-size: 1.9rem;
    font-weight: 900;
}

.customer-auth-subtitle {
    margin: 10px 0 0;
    color: #6d778a;
    font-weight: 600;
}

.customer-field {
    margin-top: 16px;
}

.customer-field label {
    margin-bottom: 8px;
    color: #2f3b52;
    font-size: 0.9rem;
    font-weight: 800;
}

.customer-input-wrap {
    position: relative;
}

.customer-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6e7c95;
    font-size: 1rem;
}

.customer-input {
    min-height: 50px;
    padding: 12px 44px 12px 42px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 12px;
    font-weight: 700;
}

.customer-input:focus {
    border-color: rgba(47, 128, 237, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.12);
}

.customer-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.customer-auth-link {
    color: #2f80ed;
    font-size: 0.9rem;
    font-weight: 800;
}

.customer-auth-link:hover {
    color: #0c4ca3;
}

.customer-auth-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #2f80ed, #1458bc);
    font-weight: 900;
}

.customer-auth-submit[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
}

.customer-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    color: #5b6b86;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-password-toggle:hover {
    color: #1f5fbf;
    background: rgba(92, 157, 245, 0.1);
}

.customer-password-meter {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.customer-password-meter span {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: #d9e4f4;
    transition: background-color 180ms ease;
}

.customer-password-meter span.active.weak {
    background: #e85d75;
}

.customer-password-meter span.active.medium {
    background: #f0b342;
}

.customer-password-meter span.active.strong {
    background: #2bbf90;
}

.customer-password-hint {
    margin-top: 10px;
    color: #6d778a;
    font-size: 0.86rem;
    font-weight: 600;
}

.customer-auth-helper {
    margin-top: 18px;
    color: #6d778a;
    font-weight: 600;
}

.customer-auth-helper strong {
    color: #25324a;
}

.customer-otp-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.customer-otp-input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(92, 157, 245, 0.32);
    border-radius: 12px;
    text-align: center;
    color: #25324a;
    font-size: 1.35rem;
    font-weight: 900;
}

.customer-otp-input:focus {
    border-color: rgba(47, 128, 237, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.12);
    outline: none;
}

.customer-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.customer-auth-secondary {
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid rgba(92, 157, 245, 0.25);
    border-radius: 10px;
    background: #f2f8ff;
    color: #0e4fa9;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .customer-auth-page {
        padding-top: 106px;
    }

    .customer-auth-form {
        padding: 30px 24px;
    }
}

@media (max-width: 767.98px) {
    .customer-auth-page {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .customer-auth-visual {
        min-height: 220px;
    }

    .customer-auth-title {
        font-size: 1.55rem;
    }

    .customer-otp-grid {
        gap: 8px;
    }

    .customer-otp-input {
        height: 48px;
        font-size: 1.2rem;
    }

    .customer-auth-links {
        align-items: flex-start;
        flex-direction: column;
    }
}
