.mod {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.mod-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 25px; /* Закругление модальных окон */
  width: 80%; /* Адаптивная ширина */
  max-width: 400px; /* Максимальная ширина */
  position: relative;
  text-align: center; /* Центрирование текста */
}

.clos {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px; /* Смещение крестика левее */
  font-size: 28px;
  font-weight: bold;
  padding: 5px;
}

.clos:hover,
.clos:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 10px 10px 10px 40px; /* Отступ для иконок */
  border: none; /* Убираем рамку */
  border-bottom: 1px solid #ccc; /* Оставляем только нижнюю линию */
  outline: none;
  box-sizing: border-box;
  transition: border-bottom-color 0.3s;
}

.input-group input:focus {
  border-bottom-color: #ee8b2e;
}

.icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
#btn {
  background-color: #ee8b2e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  width: 100%;
  font-weight: bold; /* Жирный текст на кнопках */
  margin-bottom: 10px;
}

#btn:hover {
  background-color: #c86100;
}
.switch-link {
  color: #ee8b2e;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline;
  padding-top: 10px;
}

.switch-link:hover {
  color: #c86100;
  text-decoration: underline;
}
