/* ═════════ Страница логина v2 ═════════ */

.login-page-v2 {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background: #f5f8fc;
  flex-grow: 1;
}

/* Декоративные круги */
.login-page-v2__circle-tr1 {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(240, 243, 250, 1);
  top: -300px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.login-page-v2__circle-tr2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(235, 238, 248, 0.35);
  top: 30px;
  right: -180px;
  pointer-events: none;
  z-index: 0;
}

.login-page-v2__circle-bl1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(235, 238, 248, 0.55);
  bottom: -270px;
  left: -170px;
  pointer-events: none;
  z-index: 0;
}

.login-page-v2__circle-bl2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(235, 238, 248, 0.40);
  bottom: 0px;
  left: -120px;
  pointer-events: none;
  z-index: 0;
}

.login-page-v2__wrapper {
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ═════════ ИНФОРМАЦИОННЫЙ БАННЕР ══════════ */
.login-page-v2__banner {
  background: #e8f0fe;
  border: 1.5px solid #b8cde8;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  z-index: 200 !important;
}

.login-page-v2__banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-page-v2__banner-icon img {
  width: 40px;
  height: 40px;
  filter: invert(11%) sepia(98%) saturate(5880%) hue-rotate(214deg) brightness(92%) contrast(101%);
}

.login-page-v2__banner-text {
  font-size: 15px;
  line-height: 1.5;
  color: #1a56c4;
  padding-top: 2px;
}

/* ══════════ КАРТОЧКИ ═══════════ */
.login-page-v2__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.login-page-v2__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Левая карточка — информация */
.login-page-v2__info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px 0;
}

.login-page-v2__info-block + .login-page-v2__info-block {
  margin-top: 24px;
}

.login-page-v2__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-page-v2__info-icon img {
  width: 20px;
  height: 20px;
}

.login-page-v2__info-text {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
  font-weight: 600;
}

/* Правая карточка — форма */
.login-page-v2__form-group {
  margin-bottom: 16px;
}

.login-page-v2__form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.login-page-v2__input-wrap {
  position: relative;
}

.login-page-v2__input {
  width: 100%;
  padding: 14px 16px;
  background: #eef3fb;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  color: #1a1a2e;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

.login-page-v2__input::placeholder {
  color: #999;
}

.login-page-v2__input:focus {
  background: #fff;
  border-color: #1a56c4;
}

.login-page-v2__password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page-v2__password-toggle svg {
  width: 20px;
  height: 20px;
  stroke: #888;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-page-v2__btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
}

.login-page-v2__btn--primary {
  background: #1a56c4;
  color: #fff;
  margin-bottom: 12px;
}

.login-page-v2__btn--primary:hover {
  background: #1447a8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 86, 196, 0.3);
}

.login-page-v2__btn--outline {
  background: #fff;
  color: #1a56c4;
  border: 1.5px solid #1a56c4;
}

.login-page-v2__btn--outline:hover {
  background: #eef3fb;
  transform: translateY(-1px);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
  .login-page-v2__cards {
    grid-template-columns: 1fr;
  }
  .login-page-v2__banner {
    flex-direction: column;
    gap: 12px;
  }
  .login-page-v2__card {
    padding: 28px;
  }
}
