/* =========================================
   FORMS v10 — matches new neon plate style
   ========================================= */

.formWrap{
  border-radius: 24px;
  background: rgba(15,18,28,.70);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 90px rgba(0,0,0,.50);
  padding: 16px;
}

.formHeader{
  padding: 6px 4px 14px;
}

.formTitle{
  font-size: 18px;
  font-weight: 1000;
  letter-spacing:.4px;
}

.formSub{
  margin-top: 6px;
  font-size: 12px;
  opacity:.72;
}

.formGrid{
  display:grid;
  gap: 14px;
}

.field{
  border-radius: 20px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.labelTop{
  display:block;
  font-size: 12px;
  font-weight: 950;
  opacity:.9;
  margin-bottom: 8px;
  letter-spacing:.3px;
}

.input{
  width:100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,18,28,.55);
  color: inherit;
  outline: none;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.input:focus{
  transform: translateY(-1px);
  border-color: rgba(0,255,180,.40);
  background: rgba(15,18,28,.70);
}

.textarea{ min-height: 92px; }

.helpNote{
  margin-top: 8px;
  font-size: 12px;
  opacity: .70;
}

.btnPrimary{
  width:100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 18px;
  cursor:pointer;
  font-weight: 1000;
  letter-spacing:.3px;

  color: #07110e;
  background: linear-gradient(135deg, rgba(0,255,180,.95), rgba(80,140,255,.85), rgba(255,70,200,.75));
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
  transition: transform .18s ease, filter .18s ease;
}

.btnPrimary:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.btnPrimary:active{ transform: translateY(0); }

.btnGhost.mini{
  margin-top: 10px;
  width:100%;
  padding: 11px 12px;
  border-radius: 16px;
}

.copyResult{
  margin-top: 10px;
  font-size: 12px;
  opacity: .85;
  white-space: pre-wrap;
}

.calcBox{
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,18,28,.45);
}

.calcLine{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 7px 0;
  font-weight: 950;
}
.calcLine.small{
  opacity:.72;
  font-weight: 850;
}

.agentStatus{
  margin-top: 10px;
  font-size: 12px;
  opacity: .9;
}

.formNote{ margin-top: 8px; }
.tinyNote{
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(15,18,28,.45);
  border: 1px solid rgba(255,255,255,.08);
  opacity:.9;
  font-size: 12px;
}

/* error alert */
.alert{
  border-radius: 18px !important;
  background: rgba(255,70,120,.10) !important;
  border: 1px solid rgba(255,70,120,.28) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.35) !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 900;
}

/* copybox: text + help inside same box */
.copyBox{
  white-space: normal !important;
  cursor: pointer;
  display: grid;
  gap: 10px;
  text-align: center;
  line-height: 1.7;
}

.copyBox .copyMain{
  font-weight: 1000;
  font-size: 15px;
  letter-spacing: .2px;
  opacity: .96;
  word-break: break-word;
}

.copyBox .copyHelpInBox{
  font-size: 12px;
  font-weight: 850;
  opacity: .75;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.14);
  letter-spacing: .2px;
}


/* mobile */
@media (max-width: 520px){
  .formWrap{ padding: 14px; }
  .field{ padding: 11px; }
}
