/* SohojPay Recharge Form Style */

.sohojpay-recharge-container {
  max-width: 420px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.3s ease-in-out;
}

.sohojpay-recharge-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.sohojpay-recharge-form .form-group {
  margin-bottom: 18px;
}

.sohojpay-recharge-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.sohojpay-recharge-form input[type="text"],
.sohojpay-recharge-form input[type="number"],
.sohojpay-recharge-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  transition: border 0.3s, box-shadow 0.3s;
}

.sohojpay-recharge-form input[type="text"]:focus,
.sohojpay-recharge-form input[type="number"]:focus,
.sohojpay-recharge-form select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
  outline: none;
}

.sohojpay-recharge-form input[type="submit"] {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sohojpay-recharge-form input[type="submit"]::before {
  content: "🔋";
  font-size: 18px;
}

.sohojpay-recharge-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  transform: translateY(-2px);
}

/* Messages */
.sohojpay-response-message {
  margin-top: 18px;
  font-size: 14px;
}

.sohojpay-response-message .success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sohojpay-response-message .success::before {
  content: "✅";
  font-weight: bold;
}

.sohojpay-response-message .error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sohojpay-response-message .error::before {
  content: "❌";
  font-weight: bold;
}

.sohojpay-response-message .info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sohojpay-response-message .info::before {
  content: "ℹ️";
  font-weight: bold;
}

/* Responsive */
@media (max-width: 480px) {
  .sohojpay-recharge-container {
    padding: 18px;
    margin: 20px;
  }

  .sohojpay-recharge-form input[type="submit"] {
    font-size: 15px;
    padding: 12px;
  }
}