/* forms.css (from style.css L1754-L1791) */
/* ======================================================
   DARK FORM STYLING
====================================================== */

.form-label{
  color: rgba(232,247,255,.95);
  font-weight: 600;
}

.form-control,
.form-select,
textarea{
  background: rgba(7,10,15,.60) !important;
  border: 1px solid rgba(0,230,255,.35) !important;
  color: var(--text) !important;
}

.input-group-text{
  background: rgba(7,10,15,.75) !important;
  border: 1px solid rgba(0,230,255,.35) !important;
  color: var(--muted) !important;
}

.form-control::placeholder,
textarea::placeholder {
  color: rgba(232,247,255,.10) !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus{
  background: rgba(7,10,15,.70) !important;
  border-color: rgba(0,230,255,.65) !important;
  box-shadow: 0 0 0 .2rem rgba(0,230,255,.18) !important;
  color: var(--text) !important;
}


