 
.ccf-container {
  background: url('https://via.placeholder.com/1200x600') no-repeat center center/cover;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ccf-overlay {
  background: rgba(255, 255, 255, 0.85); /* Sfondo opacizzato */
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.ccf-form input,
.ccf-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.ccf-form textarea {
  min-height: 120px;
}

.ccf-form button {
  background: #b71c1c;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.ccf-form button:hover {
  background: #8e0000;
}

.ccf-success {
  color: green;
  font-weight: bold;
  margin-bottom: 15px;
}

.ccf-error {
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
}
