.form-main {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  
  border-radius: 20px;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-group {
  position: relative;
  margin:0 !important;
}

.fc-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.fc-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8eaf0;
  border-radius: 10px;
  font-size: 15px;
  color: #1a202c;
  background: #fafbfc;
  transition: all 0.2s ease;
  outline: none;
  font-weight: 400;
  height: 52px;
}

.fc-field::placeholder {
  color: #a0aec0;
}

.fc-field:hover {
  border-color: #d4d8e2;
  background: #ffffff;
}

.fc-field:focus {
  border-color: #ec4899;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.08);
}

.fc-phone-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 2px;
  align-items: center;
}

.fc-ddi-select {
  width: 100%;
  padding: 0 12px;
  border: 1.5px solid #e8eaf0;
  border-radius: 10px;
  font-size: 14px;
  color: #1a202c;
  background: #fafbfc;
  transition: all 0.2s ease;
  outline: none;
  cursor: pointer;
  font-weight: 400;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%234a5568' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  height: 52px;
}

.fc-ddi-select option {
  background: #ffffff;
  color: #1a202c;
  padding: 10px;
  font-size: 14px;
}

.fc-ddi-select:hover {
  border-color: #d4d8e2;
  background: #ffffff;
}

.fc-ddi-select:focus {
  border-color: #ec4899;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.08);
}

.fc-phone-wrapper .fc-field {
  width: 100%;
  height: 52px;
}

.form-navigation {
  margin-top: 8px;
}

.btn-enviar {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-enviar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s;
}

.btn-enviar:hover:not(:disabled)::before {
  left: 100%;
}

.btn-enviar:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.45);
  background: linear-gradient(135deg, #db2777 0%, #ec4899 100%);
}

.btn-enviar:active:not(:disabled) {
  transform: translateY(0);
}

.btn-enviar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #cbd5e0;
  box-shadow: none;
}

.fc-error-message {
  color: #f56565;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
  background: #fee;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid #f56565;
}

@media (max-width: 640px) {
  .form-main {
    padding: 32px 24px;
    max-width: 100%;
    border-radius: 18px;
  }
  
  .form-page {
    gap: 14px;
  }
  
  .fc-phone-wrapper {
    grid-template-columns: 35% 65%;
  }
  
  .fc-field,
  .fc-ddi-select {
    font-size: 14px;
    height: 52px;
  }
  
  .fc-ddi-select {
    padding-right: 32px;
  }
  
  .btn-enviar {
    padding: 16px 24px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .form-main {
    padding: 28px 20px;
  }
  
  .fc-phone-wrapper {
    grid-template-columns: 38% 62%;
  }
}