#dfm-captcha-container {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.captcha-refresh {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 10px;
    color: #0073aa;
}

#dfm_captcha {
    margin-top: 8px;
    display: block;
    width: 100%;
    padding: 8px;
}

.dfm-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    flex-direction: column; /* Mengatur elemen-elemen secara vertikal */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
}
.dfm-loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px; /* Tambahkan sedikit ruang di bawah spinner */
}
.dfm-loading-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.dfm-loading-notice {
    font-size: 1em;
    color: #666;
    max-width: 80%;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}