/* Фон модалки */
.LM3-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

/* Скрытие модалки */
.LM3-hidden {
  display: none !important;
}

/* Окно внутри модалки */
.LM3-modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  width: 320px;
  max-width: 95%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Кнопка закрытия */
.LM3-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}

/* Заголовок */
.LM3-modal-title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

/* Формы */
.LM3-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
  font-size: 14px;
}

.LM3-form input[type="text"],
.LM3-form input[type="email"],
.LM3-form input[type="password"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.25s ease;
}

.LM3-form input[type="text"]:focus,
.LM3-form input[type="email"]:focus,
.LM3-form input[type="password"]:focus {
  border-color: #3a86ff;
  outline: none;
}

/* Кнопки */
.LM3-btn-submit {
  margin-top: 18px;
  width: 100%;
  background-color: #3a86ff;
  color: white;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.LM3-btn-submit:hover {
  background-color: #2f6dcc;
}

/* Сообщения */
.LM3-modal-footer {
  margin-top: 12px;
  font-size: 13px;
  color: #b33;
  min-height: 20px;
}
