.deleteAccount_container {
  margin-top: 100px;
  display: block;
  padding-top: 0px !important;
  padding-bottom: 50px !important;
}

.deleteAccount_title {
  line-height: 1.2 !important;
}

.deleteAccount_description_text {
  width: 100% !important;
  max-width: 100% !important;
}

.delete_popup-input_container {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  justify-content: flex-start !important;
  width: 100% !important;
  align-items: flex-start !important;
}

.delete_popup-input {
  width: 100% !important;
}

.delete_popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  width: inherit !important;
}

.delete_popup {
  height: auto !important;
}

.delete_popup-submit:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

@media screen and (max-width: 770px) {
  .popup.active {
    display: flex !important;
  }

  .popupDeleting2 {
    height: 400px !important;
  }
}

///////////////////////

.delete-account-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.delete-account-container h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.delete-account-container p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 16px;
}

.delete-account-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.delete-account-list li {
  margin-bottom: 8px;
}

/* Кнопка удаления */
.btn-delete-account {
  display: inline-block;
  background-color: #FFC700;
  color: #371B6C;
  font-weight: 600;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 20px;
  text-decoration: none;
}

.btn-delete-account:hover {
  opacity: 0.9;
}

/* Стили попап-окон */
.popup-overlay {
  /* display: none; /* по умолчанию скрыто */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
  */
}

.popup-overlay.active {
  display: flex !important;
  /* показываем, когда нужно */
}

.popup.active {
  display: flex !important;
  /* показываем, когда нужно */
}

.popup {
  background-color: #4A2386;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  color: #fff;
}

.popup h2 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 15px;
}

.popup p {
  margin-bottom: 20px;
}

.popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/* .popup-actions button {
    background-color: #FFC700;
    color: #371B6C;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  } */
.popup-actions button:hover {
  opacity: 0.9;
}

/* Адаптив под мобильные разрешения при необходимости */
@media (max-width: 480px) {
  .delete-account-container h1 {
    font-size: 24px;
  }

  .popup {
    padding: 20px;
  }
}

////////////////