/* ===============================
   Remicoins Exchange Calculator
   =============================== */

.rc-exchange {
  position: relative;
}

.rc-exchange .rc-card__title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.rc-exchange .rc-field {
  margin-bottom: 14px;
}

.rc-exchange .rc-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--rc-muted);
  margin-bottom: 6px;
  display: block;
}

.rc-exchange .rc-field__row {
  display: flex;
  gap: 10px;
}

.rc-exchange .rc-select,
.rc-exchange .rc-input {
  height: 44px;
}

.rc-exchange .rc-input[readonly] {
  background: #f8fafc;
  cursor: not-allowed;
}

.rc-exchange .rc-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px dashed var(--rc-border);
}

.rc-exchange .rc-summary span {
  font-size: 12px;
}

.rc-exchange .rc-summary strong {
  font-weight: 800;
}

.rc-exchange .rc-btn--block {
  margin-top: 14px;
}

.rc-exchange .rc-note {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
  color: var(--rc-muted);
}

/* Responsive */
@media (max-width: 520px) {
  .rc-exchange .rc-field__row {
    flex-direction: column;
  }
}
