.bank-modal {
  position: relative;
  /*inset: 0;*/
  /*background: rgba(0,0,0,0.6);*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  /*z-index:9999;*/
}

.bank-card {
  width: var(--grid14);
  /*background: white;*/
  /*border-radius: 12px;*/
  padding: 26px;
  text-align: center;
}

.bank-header {
  margin-bottom: 20px;
}

.bank-logo {
  font-weight: bold;
  margin-bottom: 6px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid #2b6cff;
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.state {
  display: none;
}

.state.active {
  display: block;
  background:transparent !important;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  margin: 12px 0;
}

.state button {
  padding: 10px 16px;
  background: #2b6cff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.success-icon {
  font-size: 32px;
  color: green;
}

.error-icon {
  font-size: 32px;
  color: red;
}