.gipg-direct {
  max-width: 520px;
  margin: 0 auto;
  font-family: Tahoma, Arial, sans-serif;
}
.gipg-direct * {
  box-sizing: border-box;
}
.gipg-direct-box {
  background: #fff;
  border: 1px solid #dce8f7;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(18, 103, 232, 0.1);
}
.gipg-direct-title {
  margin: 0 0 8px;
  font-size: 20px;
  color: #10213c;
  text-align: center;
}
.gipg-direct-desc {
  margin: 0 0 12px;
  color: #66758d;
  text-align: center;
  line-height: 1.9;
}
.gipg-direct-gateway {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  background: #eaf4ff;
  color: #2164b3;
  border-radius: 12px;
  padding: 9px 12px;
  margin-bottom: 16px;
  font-size: 13px;
}
.gipg-direct-gateway strong {
  font-weight: 700;
}
.gipg-direct-alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.9;
}
.gipg-direct-error {
  background: #fdecee;
  border: 1px solid #f5c0c8;
  color: #a71d33;
}
.gipg-direct-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.gipg-direct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gipg-direct-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #53657c;
}
.gipg-direct-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d6e2f0;
  border-radius: 12px;
  background: #f9fbfe;
  padding: 10px 13px;
  font-family: inherit;
  font-size: 14px;
  color: #10213c;
  box-shadow: none;
}
.gipg-direct-form input:focus {
  outline: none;
  border-color: #1267e8;
  box-shadow: 0 0 0 3px rgba(18, 103, 232, 0.12);
}
.gipg-direct-form input[readonly] {
  background: #eef3f9;
  color: #6b7a8d;
  cursor: not-allowed;
}
.gipg-direct-lock {
  color: #0d9b67;
  font-size: 10px;
  font-weight: 400;
}
.gipg-direct-limit {
  font-size: 11px;
  color: #8795a7;
  line-height: 1.8;
}
.gipg-direct-submit {
  appearance: none;
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  margin-top: 4px;
  background: linear-gradient(135deg, #075bd3, #0c73ef);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.gipg-direct-submit:hover {
  background: #0648ad;
}
.gipg-direct-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 480px) {
  .gipg-direct-row {
    grid-template-columns: 1fr;
  }
}
