/* ===== Telegram Form – Clean Final ===== */
.telegram-form {
  max-width: 420px;
  margin: 20px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Inputs */
.telegram-form .telegram-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  color: #333;
  transition: all 0.25s ease;
}

.telegram-form .telegram-input:focus {
  outline: none;
  background: #fff;
  border-color: #229ED9;
  box-shadow: 0 0 0 3px rgba(34, 158, 217, 0.18);
}

/* Button – Force clean style */
.telegram-form .telegram-button {
  width: 100%;
  padding: 12px 16px;

  /* reset overrides */
  color: #ffffff !important;
  background: #229ED9 !important;
  border: 1px solid #229ED9 !important;

  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;

  transition: background 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.15s ease;
}

/* Hover */
.telegram-form .telegram-button:hover {
  background: #1c8ec4 !important;
  border-color: #1c8ec4 !important;
  box-shadow: 0 6px 18px rgba(34, 158, 217, 0.3);
}

/* Focus */
.telegram-form .telegram-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 158, 217, 0.35);
}

/* Active */
.telegram-form .telegram-button:active {
  background: #187fb0 !important;
  border-color: #187fb0 !important;
  transform: scale(0.98);
}

/* Disabled */
.telegram-form .telegram-button:disabled {
  background: #b7d8ea !important;
  border-color: #b7d8ea !important;
  color: #ffffff !important;
  cursor: not-allowed;
  box-shadow: none;
}

/* Messages */
.aseman-msg {
  margin-top: 12px;
  font-size: 14px;
}

.aseman-msg--success {
  color: #2e7d32;
}

.aseman-msg--error {
  color: #c62828;
}
