/* Form Alert Styles */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert i {
  margin-right: 8px;
}

/* Form Loading States */
.submit-loader {
  display: inline-block;
}

.submit-loader i {
  margin-right: 5px;
}

/* Form Validation Styles */
.form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Button Disabled State */
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Smooth Transitions */
.alert,
.submit-text,
.submit-loader {
  transition: all 0.3s ease;
}

/* Modal Form Specific Styles */
#exampleModalCenter .modal-body {
  max-height: 80vh;
  overflow-y: auto;
}

/* Contact Form Message Positioning */
#contactFormMessage {
  position: relative;
  z-index: 10;
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
  .alert {
    font-size: 14px;
    padding: 12px;
  }
}
