/*Estilos Formulario */
/* ====== ESTRUCTURA GENERAL ====== */
form {
  max-width: 90%;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

/* ====== TÍTULOS ====== */
form p {
  margin: 0;
  text-align: center;
}
form p:first-child {
  font-size: 22px;
  font-weight: bold;
}
form p span {
  font-size: 18px;
  font-weight: normal;
}

/* ====== CAMPOS INPUT ====== */
.ic-class-form-input {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

/* ====== LABELS ====== */
.ic-class-form-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

/* ====== CHECKBOXES ====== */
.ic-class-form-check-legal,
.ic-class-form-check-legal.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.ic-class-form-check-input-legal {
  all: unset;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  margin-top: 4px;
  cursor: pointer;
  accent-color: #007bff;
}

.ic-class-form-check-label-legal {
  line-height: 1.4;
  margin-top: 3px;
}

.ic-class-form-link {
  color: #007bff;
  font-weight: bold;
  text-decoration: underline;
}

/* ====== BOTÓN ====== */
#submit-btn {
  background-color: #1FC41C;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
#submit-btn:hover {
  background-color: #43a047;
}

/* ====== MENSAJE FINAL ====== */
form::after {
  content: "Tus datos están protegidos y no serán compartidos.";
  display: block;
  text-align: center;
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}

/* ====== RESPONSIVE ====== */
@media screen and (max-width: 768px) {
  form {
    width: 100%;
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
  }
}
.telefono-wrapper {
  position: relative;
  width: 100%;
  min-height: 40px;
}

.telefono-wrapper::before {
  content: "+57";
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #333;
  z-index: 2;
  display: block;
}

.telefono-wrapper::after {
  content: "";
  background-image: url('https://flagcdn.com/w40/co.png');
  background-size: cover;
  width: 20px;
  height: 14px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: block;
}

.telefono-wrapper input {
  padding-left: 75px !important;
  z-index: 1;
  position: relative;
}

.ic-class-form-check-legal {
  margin-left: -1.5rem;
}

/*Fin de estilos formulario*/