/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

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

/* Focus-triggered hint text styles */
.input-group {
  position: relative;
}

.input-group .hint-text {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 0.25rem;
}

.input-group:focus-within .hint-text {
  opacity: 1;
  height: auto;
  margin-top: 0.25rem;
}

/* Also show on hover for better discoverability */
.input-group:hover .hint-text {
  opacity: 0.7;
}
