:root {
  --color-bg-main: #1e1e1e;
  --color-surface: #3d3d3d;
  --color-button-bg: #1e1e1e;

  --color-text-primary: #ffffff;
}

.desktop-verification {
  background-color: var(--color-bg-main);
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; /* Убирает скролл */
  margin: 0;
  padding: 0;
}

.theme-toggle {
  position: absolute;
  bottom: 36px;
  left: 36px;

  width: 48px;
  height: 48px;

  background: transparent;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;
}

.theme-toggle img {
  width: 32px;
  height: 32px;
}

.desktop-verification .image {
  width: 882px;
  height: 426px;
  object-fit: contain;
}

body.theme-light .desktop-verification .image {
  filter: invert(1);
}

.desktop-verification .group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 405px;
  height: 156px;
  text-align: center;
}

.desktop-verification .rectangle {
  width: 100%;
  height: 100%;
  background-color: var(--color-surface);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.desktop-verification .text-wrapper {
  top: 30px;
  left: 0;
  right: 0;
  font-size: 30px;
  position: absolute;
  font-family: 'Stapel', sans-serif;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.desktop-verification .div {
  position: absolute;
  top: 83px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 43px;
}

.desktop-verification .rectangle-2 {
  width: 100%;
  height: 100%;
  background-color: var(--color-button-bg);
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
}

.desktop-verification .text-wrapper-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  position: absolute;
  font-family: 'Stapel', sans-serif;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

/* Делаем кнопку кликабельной */
.desktop-verification .div {
  cursor: pointer;
  transition: opacity 0.3s;
}

.desktop-verification .div:hover {
  opacity: 0.9;
}

/* СВЕТЛАЯ ТЕМА */
body.theme-light {
  --color-bg-main: #ffffff;
  --color-surface: #636363;
  --color-button-bg: #CC2C24;
}