



.irnpay-container {
    width: 100%; 
    height: 100%; 
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.irnpay-loading-indicator {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db; 
    border-radius: 50%; 
    width: 60px; 
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px; 
}

.irnpay-message h1 {
    font-size: 1.5em; /* Adjust as needed */
    color: #333; /* Dark text color */
    margin-bottom: 10px; 
}

.irnpay-message p {
    font-size: 1em; 
    color: #666;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
