.elementor-271 .elementor-element.elementor-element-3dbe2e9{--display:flex;}.elementor-271 .elementor-element.elementor-element-3dbe2e9:not(.elementor-motion-effects-element-type-background), .elementor-271 .elementor-element.elementor-element-3dbe2e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#294272;}.elementor-271 .elementor-element.elementor-element-f09ae82 > .elementor-widget-container{padding:0px 19px 0px 0px;border-style:solid;border-width:0px 1px 0px 0px;border-color:#125B8D;}/* Start custom CSS for text-editor, class: .elementor-element-f09ae82 *//* Contenedor principal */
.ifemfo-form-container {
  max-width: 650px;
  margin: 50px auto;
  padding: 50px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Título y descripción */
.ifemfo-form-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #005bb5;
  margin-bottom: 8px;
}

.ifemfo-form-container p {
  text-align: center;
  font-size: 16px;
  color: #333333;
  margin-bottom: 40px;
}

/* Grupo de input con animación */
.ifemfo-input-group {
  position: relative;
  margin-bottom: 25px;
}

.ifemfo-input-group input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fefefe;
}

.ifemfo-input-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #777;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s ease all;
  background: #ffffff;
  padding: 0 5px;
}

.ifemfo-input-group input:focus ~ label,
.ifemfo-input-group input:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 13px;
  color: #28a745;
}

/* Highlight animado */
.ifemfo-input-group .highlight {
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg,#005bb5,#28a745);
  transition: 0.4s ease all;
}

.ifemfo-input-group input:focus ~ .highlight {
  width: 100%;
}

/* Botón enviar dinámico */
.ifemfo-submit {
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #005bb5, #28a745);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.ifemfo-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.ifemfo-submit::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.ifemfo-submit:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px){
  .ifemfo-form-container {
    padding: 30px 20px;
  }
  .ifemfo-form-container h2 {
    font-size: 28px;
  }
  .ifemfo-input-group input {
    padding: 14px 16px;
  }
  .ifemfo-submit {
    padding: 16px;
    font-size: 16px;
  }
}/* End custom CSS */