.captcha-container {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.captcha-container p {
    margin-top: 0;
    font-size: 14px;
}

.captcha-image-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-image {
    width: 150px;
    height: 40px;
    border: 1px solid #ccc;
    background-color: #eee;
    border-radius: 3px;
}

.captcha-refresh {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #444;
    padding: 0;
}

.captcha-input {
    width: 120px !important;
	height: 40px !important;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 14px !important;
}

/* Oculta o campo honeypot para o usuário */
.honeypot-field-wrapper {
    display: none !important;
}