﻿.lew-register-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.lew-register-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 260px;
  min-width: 200px;
}

.lew-register-form__label {
  font-weight: 600;
}

.lew-register-form__input,
.lew-register-form__select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  background: #ffffff;
}

.lew-register-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.lew-register-form__section-title {
  width: 100%;
  border-bottom: 2px solid #0f766e;
  padding-bottom: 6px;
  margin-top: 8px;
  font-weight: 700;
}

.lew-register-form__hint {
  width: 100%;
  color: #dc2626;
  font-size: 13px;
}

.lew-register-form__actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.lew-register-form__button {
  border: none;
  background: #f59e0b;
  color: #111827;
  padding: 12px 26px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.lew-register-form__button.is-secondary {
  background: #9ca3af;
  color: #ffffff;
}

.lew-register-form__notice {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
}

.lew-register-form__notice.is-success {
  background: #dcfce7;
  color: #166534;
}

.lew-register-form__notice.is-error {
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 768px) {
  .lew-register-form__actions {
    flex-direction: column-reverse;
  }

  .lew-register-form__button {
    width: 100%;
  }
}
