.ccf-form {
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  position: relative;
}

.ccf-form input,
.ccf-form select,
.ccf-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

.ccf-form input {
  width: 96%;
}

.ccf-form select {
  width: 100%;
}

.ccf-form textarea {
  width: 97%;
}

.ccf-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.ccf-buttons button {
  background: #0096FF;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.ccf-buttons .ccf-whatsapp {
  background: #22c55e;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
}

@media (max-width: 768px) {
	.ccf-form {
	  max-width: 300px;
		padding: 5px;
	}
	
	.ccf-form select {
	  width: 104%;
	}
	
	.ccf-buttons {
	  display: grid;
	  grid-auto-columns: repeat(1, 1fr);
	}
}