/* Form notification styles */
.form-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 400px;
  animation: slide-in 0.3s ease-out forwards;
}

.form-notification.success {
  background-color: #34D399;
  color: #064E3B;
  border-left: 5px solid #059669;
}

.form-notification.error {
  background-color: #F87171;
  color: #7F1D1D;
  border-left: 5px solid #DC2626;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid rgba(255, 114, 20, 0.3);
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #FF7214;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 114, 20, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  background: linear-gradient(to right, #FF7214, #FBB03B);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 114, 20, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
