.form-from-plugin {
    padding: 0px 0px 0px 25px;
}
.input-from-plugin {
    border-radius: 5px 5px 5px 5px;
    background-color: #f9f9f9 !important;
    width: 100%;
    padding: 16px !important;
    font-size: 14px;
    border-color: #f9f9f9 !important;
}

.button-container {
    margin-bottom: 2em;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}

.btn-active {
    background: #fff;
    border: 1px solid #ff9933;
    color: #333;
}

.btn {
    margin: 5px 15px 15px 5px;
    padding: 25px 35px 25px 35px !important;
    font-weight: 600 !important;
}
.btn:hover {
  background-color: #ff9933;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;

}

.border-inside-form {
    border-left: 3px solid #ff9933;
    padding: 20px 20px 30px;
}

.ee-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.ee-contact-header h3 {
    margin: 0;
}
.ee-action-buttons {
    display: flex;
    gap: 10px;
}
.ee-btn-action {
    background-color: #ff9933;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.ee-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.ee-file-input {
  display: none;
}

.ee-file-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #f9f9f9;
  color: #666;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.ee-file-label:hover {
  cursor: pointer;
}

.ee-file-icon {
  flex-shrink: 0;
}

/* Buttons */
.et_pb_button_submit {
 	font-size: 16px !important;
	font-weight: 600 !important;
    margin-top: 2rem;
}
.et_pb_button_submit:hover {
    cursor: pointer;
}

.ee-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.ee-btn-action {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ff9933;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.ee-btn-action:hover {
  background-color: #e6811c;
}

.ee-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.ee-email-text {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.2;
}

/* Responsive: vertical en pantallas pequeñas */
@media (max-width: 600px) {
  .ee-action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .ee-btn-action {
    justify-content: center;
    text-align: center;
  }

  .ee-email-text {
    font-size: 16px;
  }
}

.cu-alert {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  padding: 15px 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadein 0.4s ease;
}

.cu-alert.success {
  background-color: #28a745;
}

.cu-alert.error {
  background-color: #dc3545;
}

.cu-alert .cu-alert-close {
  margin-left: auto;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
