/* Overlay Background */
.captcha-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/web-wall/assets/img/web-wall.webp'); /* Sfondo personalizzato */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; /* Organizza i figli in colonna */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Distanza tra popup e banner */
    z-index: 1000;
}

/* Popup Style */
.captcha-popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.captcha-popup h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.captcha-popup p {
    font-size: 18px;
    margin-bottom: 20px;
}

.captcha-popup input {
    width: calc(100% - 40px);
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.captcha-popup button {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.captcha-popup button:hover {
    background: #0056b3;
}

/* Banner Style */
.captcha-banner {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.captcha-banner img {
    max-width: 100%; /* Immagini scalate proporzionalmente */
    height: auto; /* Mantiene le proporzioni */
    display: block; /* Rimuove spazi indesiderati */
    margin: 0 auto; /* Centra l'immagine */
}
