/* Authentication Forms Styling */
.form-input-wrapper input,
.form-input-wrapper select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input-wrapper input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-input-wrapper input.form-control {
  display: block;
  width: 100%;
}

/* Ensure all form inputs have proper spacing */
.mb-3 {
  margin-bottom: 1rem !important;
}

/* Add better styling for alerts */
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

/* Style field errors */
.alert-danger p {
  margin-bottom: 0.25rem;
}
