 body {
  font-family: 'Montserrat', sans-serif;
}

.rjf-form-row input {
  padding: 0.5rem 1rem !important;
  border: 1px solid #ccc !important;
  border-radius: 0.375rem !important; /* rounded-md */
  font-size: 1rem !important;
  width: 100% !important;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease !important;

  background-color: #fff !important;
  color: #111827 !important;
  outline: none !important;
  appearance: none !important;
  max-width: 100% !important;
}

.rjf-form-row input:focus {
  border-color: #3b82f6 !important; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4) !important; /* focus ring */
}

/* Hover effect */
.rjf-form-row input:hover {
  border-color: #999 !important;
}

/* Placeholder style */
.rjf-form-row input::placeholder {
  color: #9ca3af !important; /* gray-400 */
  opacity: 1 !important;
}

/* Disabled state */
.rjf-form-row input:disabled {
  background-color: #f9fafb !important; /* gray-50 */
  color: #9ca3af !important; /* gray-400 */
  cursor: not-allowed !important;
}

/* Invalid input */
.rjf-form-row input:invalid {
  border-color: #ef4444 !important; /* red-500 */
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25) !important;
}

/* Optional: input with success */
.rjf-form-row input.valid {
  border-color: #10b981 !important; /* green-500 */
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important;
}

.rjf-form-group-wrapper {
  max-width: 100% !important;
}
