#pi-advanced-registration-container {
    max-width: 450px;
    margin: 40px auto;
    position: relative; /* Potrzebne dla pozycjonowania overlay'a */
    overflow: hidden; /* Zapobiega wychodzeniu overlay'a poza zaokrąglone rogi */
}

.pi-step {
    padding: 20px;
}

/* --- Style dla Loadera i Overlay'a --- */

#pi-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Półprzezroczyste białe tło */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pi-loader {
    border: 5px solid #f3f3f3; /* Jasnoszare tło kółka */
    border-top: 5px solid #3498db; /* Niebieski kolor animacji */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: pi-spin 1s linear infinite;
}

@keyframes pi-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

