/* ── Page Loader Overlay ────── */

.page-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.432);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-loader-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.07);
    padding: 40px 56px;
    text-align: center;
    animation: loaderFadeIn 0.22s ease;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.page-loader-spinner {
    font-size: 3.2rem;
    color: #f37820;
    margin-bottom: 16px;
    line-height: 1;
}

.page-loader-text {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ── Submit button loading state ──── */

.btn-submit-loading {
    pointer-events: none !important;
    opacity: 0.72 !important;
    cursor: not-allowed !important;
}
