/*
 * 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.
 */
.w-fit {
  width: fit-content !important;
}

/* ============================================
 * LOGIN PAGE
 * ============================================ */
.login-bg {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));
  background-size: cover;
  background-position: center;
}

.login-glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn-glow:hover {
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
}

.login-input {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: #fff;
  width: 100%;
  transition: all 0.2s;
}

.login-input::placeholder {
  color: #64748b;
}

.login-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #14b8a6;
  border-color: transparent;
}