@media (max-width: 992px) {
    .auth-section .col-md-6:last-child {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .auth-form-wrapper {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .auth-form-wrapper {
        width: 100%;
    }
}

/* Button groups responsive */
@media (max-width: 575.98px) {
    .btn-group {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .brand-logo img {
        height: 40px;
    }

    .section-overview h1 {
        font-size: var(--fz-2xl);
    }

    .section-overview p {
        font-size: var(--fz-sm);
    }

    .payment-receipt {
        background:
            radial-gradient(ellipse 200px 150px at 0% 0%,
                #92ebc6 0%,
                rgba(232, 248, 245, 0.4) 30%,
                transparent 60%),
            var(--color-white);
    }

    .payment-receipt-header {
        gap: var(--space-xl);
    }

    .payment-receipt-header-title-icon {
        width: 40px;
        height: 40px;
    }

    .payment-receipt-header-title h4 {
        font-size: var(--fz-lg);
    }

    .payment-receipt-header-title p {
        font-size: var(--fz-sm);
    }

    .step-progress {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .step-progress-step {
        flex: 1 0 auto;
        min-width: 0;
    }

    .step-progress-connector {
        flex: 1 1 56px;
        min-width: 56px;
    }

    .step-progress-title {
        display: none;
    }

    .form-group-input-with-button--reduced .form-group-input-wrapper,
    .form-group-input-wrapper--reduced {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 767.98px) {
    .account-summary {
        flex-direction: column;
    }

    .account-summary-item {
        flex: none;
        width: 100%;
    }

    .account-summary-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--text-gray-200);
    }

    .payment-summary-disclosure-header {
        align-items: flex-start;
    }

    .transaction-account-number {
        flex-direction: column;
    }

    .transaction-account-number-col {
        flex: none;
        width: 100%;
    }

    .payment-receipt-header {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-receipt-header-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .payment-receipt-row {
        grid-template-columns: 1fr;
        row-gap: var(--space-xs);
        column-gap: 0;
    }
}