.kommo-form {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}

.kommo-form *,
.kommo-form *::before,
.kommo-form *::after {
  box-sizing: border-box;
}

.kommo-form .kommo-form__field {
  position: relative;
  margin-bottom: 1.25rem;
  width: 100%;
}

.kommo-form .kommo-form__input {
  width: 100%;
  height: 54px;
  padding: 22px 14px 6px 14px;
  font-size: 1rem;
  line-height: 1.2;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}

.kommo-form .kommo-form__input:focus {
  border-color: #1e3489;
  box-shadow: 0 0 0 3px rgba(30, 52, 137, 0.18);
}

.kommo-form .kommo-form__label {
  position: absolute;
  top: 17px;
  left: 14px;
  font-size: 0.95rem;
  color: #6b7280;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out, font-size 0.2s ease-in-out;
  margin: 0;
  line-height: 1;
}

/* Floating label when focused or when placeholder is NOT shown (input has value) */
.kommo-form .kommo-form__input:focus ~ .kommo-form__label,
.kommo-form .kommo-form__input:not(:placeholder-shown) ~ .kommo-form__label {
  transform: translateY(-10px) scale(0.78);
  color: #1e3489;
  font-weight: 600;
}

.kommo-form .kommo-form__button {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #1e3489;
  border: 1px solid #1e3489;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-align: center;
  display: inline-block;
}

.kommo-form .kommo-form__button:hover {
  background-color: #0f1a42;
  border-color: #0f1a42;
}

.kommo-form .kommo-form__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.kommo-form .kommo-form__alert {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  display: none;
}

.kommo-form .kommo-form__alert--success {
  display: block;
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.kommo-form .kommo-form__alert--error {
  display: block;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}
