/* Стили для базового модального окна */
.getStarted_modal {

  position: fixed;
  z-index: 1000; /* Выше других элементов */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Полупрозрачный черный фон */
}

.getStarted_modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #121212;
  padding: 40px 46px 48px 46px;
  border: 2px solid #212121;
  width: 360px;
  height: 488px;
  box-sizing: border-box;
  border-radius: 12px;
}

.getStarted_close {
  position: absolute;
  right: 6.53%;
  top: 5.40%;
  cursor: pointer;
}

.close-icon {
  width: 14.01px;
  height: 14.01px;
}

.getStarted_close:hover .close-icon {
  opacity: 0.8; /* Небольшое изменение прозрачности при наведении */
}

.getStarted_modal button {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 24px;
  position: relative; /* Уточнение для позиционирования иконок */
}

.getStarted_modal button:hover {
  background-color: #e1e1e1;
}

.getStarted_modal h2 {
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px; /* Отступ перед первой кнопкой */
  margin-top: 2px;
}

.getStarted_modal-content button {
  position: relative;
  background-color: #fff;
  color: rgb(18, 18, 18);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; 
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
}

.getStarted_modal-content .button-icon {
  width: 16px;
  height: 18px;
  margin-right: 8px; 
}

.getStarted_modal-content button:hover {
  background-color: #e1e1e1; 
}
.account-info {
  color: #fff;
  width: 246px;
  height: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0 auto; 
  text-decoration: none;
}

.login-link {
  color: rgb(65, 135, 45); /* Зелёный цвет для ссылки */
  cursor: pointer; /* Указатель, чтобы показать, что элемент кликабельный */
  text-decoration: none; /* Убираем подчеркивание */
  font-weight: 600;
  text-decoration: none;
  outline: none;
}


/* Отступ перед параграфом с информацией о входе */
.account-info {
  margin-top: 32px; /* Увеличенный отступ перед надписью "Уже есть аккаунт?" */
}

/* Отступ перед блоком "Уже есть аккаунт?" */
.getStarted_modal button:nth-of-type(3) {
  margin-bottom: 32px; /* Увеличенный отступ после кнопки "Регистрация с Email"*/
}

.CheckLogin {
  position: absolute;
  right: 10px;
  top: 70%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.check-user {
    width: 24px;
    height: 24px;
    position: relative;
}

.button-with-icon-tg {
    width: 17%;
    height: 44px;
    border: none;
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}