@import url("../fonts/montserrat.css");
* {
  font-family: Montserrat;
}

p {
  margin: 0;
  padding: 0;
}

:root {
  --headerHeight: 70px;
}

html, body {
  height: 100%;
  overscroll-behavior: none;
}

body {
  background-color: #fff;
  padding: 0;
  margin: 0;
}

*:not(input):not(textarea) {
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;
  cursor: default;
  user-select: none;
}

.twinPanel {
  display: flex;
  grid-gap: 10px;
  height: 100%;
  min-height: 100dvh;
}

/* ===== Left panel: brand showcase (Asent / perakende POS tanıtımı) ===== */

.twinPanel .leftPanel {
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
  background: url(/images/login/login-panel-back.svg) center no-repeat, linear-gradient(322deg, #04090F 7.19%, #1D3B6D 100%);
  background-size: cover;
  box-shadow: 0px 0px 50px 0px #04090F inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 44px;
  padding: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.twinPanel .leftPanel .leftPanelSlideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.twinPanel .leftPanel .leftPanelSlideshow .leftPanelSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1800ms ease, transform 9000ms ease;
}

.twinPanel .leftPanel .leftPanelSlideshow .leftPanelSlide svg {
  height: 100%;
  width: 100%;
}

.twinPanel .leftPanel .leftPanelSlideshow .leftPanelSlide.active {
  opacity: 1;
  transform: scale(1);
}

.twinPanel .leftPanel .brandHeader {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.twinPanel .leftPanel .brandHeader .brandLogo {
  max-height: 68px;
}

.twinPanel .leftPanel .brandHero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.twinPanel .leftPanel .brandHero .brandHeroTag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  text-transform: uppercase;
}

.twinPanel .leftPanel .brandHero .brandHeroTitleViewport {
  overflow: hidden;
  width: 100%;
  height: 100px;
}

.twinPanel .leftPanel .brandHero .brandHeroTitleTrack {
  display: flex;
  margin: 0;
  height: 100%;
  transform: translateX(0%);
  transition: transform 700ms ease;
}

.twinPanel .leftPanel .brandHero .brandHeroTitleTrack .brandHeroTitleSlide {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  flex: 0 0 100%;
  width: 100%;
}

.twinPanel .leftPanel .brandHero .brandHeroText {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.twinPanel .leftPanel .brandFeatures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.twinPanel .leftPanel .brandFeatures .brandFeatureItem {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.twinPanel .leftPanel .brandFeatures .brandFeatureIcon {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.twinPanel .leftPanel .brandFeatures .brandFeatureIcon svg {
  height: 20px;
  width: 20px;
}

/* ===== Right panel: login form ===== */

.twinPanel .rightPanel.formSide {
  flex: 1 0 0;
  background-color: #fff;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  overflow-y: auto;
  min-height: 0;
}

.twinPanel .rightPanel.formSide.keyboardOpen {
  justify-content: flex-start;
  overflow-y: auto;
}

.twinPanel .rightPanel.formSide .macStatusLabel {
  position: fixed;
  left: 25px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 33, 63, 0.55);
  cursor: pointer;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-tooltip] {
  position: fixed;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-tooltip]:hover:after {
  background: #0E213F;
  border-radius: 6px;
  bottom: calc(100% + 8px);
  color: #fff;
  content: attr(as-tooltip);
  font-size: 11px;
  font-weight: 500;
  left: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  white-space: nowrap;
  z-index: 20;
}

.twinPanel .rightPanel.formSide .macStatusLabel .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9AA1B5;
  flex-shrink: 0;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-status="loading"] .dot {
  background: #E3A008;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-status="ok"] {
  color: #1a8a3f;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-status="ok"] .dot {
  background: #1a8a3f;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-status="fail"] {
  color: #DA443C;
}

.twinPanel .rightPanel.formSide .macStatusLabel[as-status="fail"] .dot {
  background: #DA443C;
}

.twinPanel .rightPanel.formSide .middle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
}

.twinPanel .rightPanel.formSide .middle.keyboardOpen {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 20px;
}

.twinPanel .rightPanel.formSide .middle .form {
  display: flex;
  width: min(620px, 100%);
  padding: 40px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.twinPanel .rightPanel.formSide .middle .form.keyboardOpen {
  justify-content: flex-start;
  padding-top: 20px;
}

.twinPanel .rightPanel.formSide .middle .form .elements {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  align-self: stretch;
}

.twinPanel .rightPanel.formSide .middle .form .elements .topBlok {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.twinPanel .rightPanel.formSide .middle .form .elements .topBlok .topBlokIcon {
  align-items: center;
  background: rgba(14, 33, 63, 0.08);
  border-radius: 16px;
  color: #0E213F;
  display: flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .topBlok .topBlokIcon svg {
  height: 26px;
  width: 26px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .topBlok .caption {
  color: #0E213F;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .topBlok .description {
  color: rgba(14, 33, 63, 0.75);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .inputRow {
  display: flex;
  width: 100%;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .inputRow.active .input {
  border-color: #0E213F;
  box-shadow: 0 0 0 3px rgba(14, 33, 63, 0.12);
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .inputWithIcon {
  position: relative;
  width: 100%;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .inputFieldIcon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(14, 33, 63, 0.4);
  pointer-events: none;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input {
  border-radius: 10px;
  border: 1.5px solid rgba(69, 83, 119, 0.2);
  background: #fff;
  outline: none;
  height: 50px;
  width: 100%;
  padding: 0 46px 0 44px;
  color: #0E213F;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  transition: 0s all !important;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input::placeholder {
  color: rgba(14, 33, 63, 0.75);
  font-weight: 400;
  font-size: 16px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input:valid[type=text].password {
  padding-right: 76px;
  background-image: url(/images/login/password-un.svg);
  background-position: center right 46px;
  background-repeat: no-repeat;
  background-size: 22px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input:valid[type=password].password {
  padding-right: 76px;
  background-image: url(/images/login/password.svg);
  background-position: center right 46px;
  background-repeat: no-repeat;
  background-size: 22px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input.notControll {
  border: 1.5px solid crimson;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input.okControll {
  border: 1.5px solid green;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: rgba(14, 33, 63, 0.08);
  color: #0E213F;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle:hover {
  background: rgba(14, 33, 63, 0.15);
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle svg {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle[as-tooltip] {
  position: absolute;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle[as-tooltip]:hover:after {
  background: #0E213F;
  border-radius: 6px;
  bottom: calc(100% + 10px);
  color: #fff;
  content: attr(as-tooltip);
  font-size: 11px;
  font-weight: 500;
  left: 50%;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 20;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard {
  display: none;
  width: 100%;
  max-width: 700px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eff3fa 0%, #e5ebf5 100%);
  padding: 12px;
  border: 1px solid rgba(69, 83, 119, 0.18);
  box-shadow: 0 18px 45px rgba(14, 33, 63, 0.14);
  box-sizing: border-box;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardTitle {
  color: #0E213F;
  font-size: 16px;
  font-weight: 700;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardTarget {
  color: rgba(14, 33, 63, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardBody {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow {
  display: grid;
  gap: 6px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  max-width: 88%;
  margin: 0 auto;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.actions {
  grid-template-columns: 1.15fr 1.35fr 1fr 1fr 1fr 1fr;
  max-width: 88%;
  margin: 0 auto;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey {
  border: none;
  border-radius: 11px;
  min-height: 44px;
  background: #fff;
  color: #0E213F;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(14, 33, 63, 0.08);
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action {
  background: rgba(14, 33, 63, 0.08);
  font-size: 12px;
  min-height: 40px;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action.active {
  background: #0E213F;
  color: #fff;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action.confirm {
  background: linear-gradient(180deg, #17315b 0%, #0E213F 100%);
  color: #fff;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .text {
  color: #0E213F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: default;
}

.twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .text:hover {
  color: #0E213F;
  font-weight: 600;
  line-height: 22px;
}

.twinPanel .rightPanel.formSide .middle .form .buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: -webkit-fill-available;
}

.twinPanel .rightPanel.formSide .middle .form .buttons .button {
  white-space: nowrap;
  border-radius: 15px;
  background: #0E213F;
  display: flex;
  align-items: center;
  width: -webkit-fill-available;
  padding: 15px 20px;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.twinPanel .rightPanel.formSide .middle .form .buttons .button svg {
  height: 22px;
  width: 22px;
  flex-shrink: 0;
}

.twinPanel .rightPanel.formSide .middle .form .buttons .button.submitting {
  opacity: 0.7;
  pointer-events: none;
}

.twinPanel .rightPanel.formSide .middle .form .loginFormMessage {
  min-height: 18px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: color 0.2s ease;
}

.twinPanel .rightPanel.formSide .middle .form .loginFormMessage[as-tone=""] {
  visibility: hidden;
}

.twinPanel .rightPanel.formSide .middle .form .loginFormMessage[as-tone="loading"] {
  color: #6B7280;
}

.twinPanel .rightPanel.formSide .middle .form .loginFormMessage[as-tone="success"] {
  color: #1FA855;
}

.twinPanel .rightPanel.formSide .middle .form .loginFormMessage[as-tone="error"] {
  color: #DA443C;
}

.twinPanel .rightPanel.formSide .middle .form .buttons .text {
  color: #0E213F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: default;
}

.twinPanel .rightPanel.formSide .middle .form .buttons .text:hover {
  color: #0E213F;
  font-weight: 600;
  line-height: 22px;
}

.captchaBody {
  display: flex;
  grid-gap: 7px;
  background: #fff;
  width: 100%;
}

.captchaBody img {
  height: 65px;
  width: 170px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  flex: 1;
}

.captchaBody vpanel {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  flex: 1;
}

.captchaBody vpanel input {
  height: 30px !important;
  width: 100%;
  outline: none;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  text-align: center;
  font-size: 10pt;
  color: #7A8692;
}

.captchaBody vpanel button {
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  border: none;
  background-color: #F0F0F0;
  border-radius: 10px;
  color: #477FFF;
  font-size: 12px;
  font-weight: 600;
  transition: 300ms all;
}

.captchaBody vpanel button:hover {
  background-color: #d6d6d6;
}

/* Kısıtlı yükseklikli ekranlar (ör. 1366x768 dokunmatik POS/tablet) - dokunmatik
   klavye ekranın büyük kısmını kaplayıp scroll gerektirmesin diye kompakt hale getir. */
@media only screen and (max-height: 800px) {
  .twinPanel .rightPanel.formSide {
    padding: 16px 30px;
  }
  .twinPanel .rightPanel.formSide .middle .form {
    padding: 16px 24px;
    gap: 16px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements {
    gap: 16px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .topBlok {
    gap: 10px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .topBlok .topBlokIcon {
    height: 40px;
    width: 40px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .topBlok .caption {
    font-size: 22px;
    line-height: 26px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .topBlok .description {
    font-size: 13px;
    line-height: 20px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input {
    height: 42px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard {
    padding: 8px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardBody {
    gap: 4px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow {
    gap: 4px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey {
    min-height: 30px;
    font-size: 13px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action {
    min-height: 28px;
    font-size: 11px;
  }
  .twinPanel .rightPanel.formSide .middle .form .buttons .button {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .twinPanel .leftPanel {
    padding: 40px;
    gap: 32px;
  }
  .twinPanel .leftPanel .brandHero .brandHeroTitleViewport {
    height: 84px;
  }
  .twinPanel .leftPanel .brandHero .brandHeroTitleTrack .brandHeroTitleSlide {
    font-size: 34px;
    line-height: 42px;
  }
  .twinPanel .rightPanel.formSide .middle .form {
    width: min(560px, 100%);
  }
}

@media only screen and (max-width: 768px) {
  .twinPanel .rightPanel.formSide .middle .form {
    width: min(100%, 620px);
    padding: 30px 14px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols10,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols12,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols11,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols9 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 100%;
  }

  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media only screen and (orientation: portrait) {
  .twinPanel {
    flex-direction: column;
  }
  .twinPanel .leftPanel {
    padding: 32px;
    gap: 24px;
    flex: 0 1 auto;
  }
  .twinPanel .leftPanel .brandFeatures {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .twinPanel.keyboardOpen .leftPanel {
    display: none;
  }
  .twinPanel .rightPanel.formSide {
    flex: 1 1 auto;
    min-height: 0;
  }
}
@media only screen and (max-width: 500px) {
  .twinPanel .leftPanel {
    padding: 24px;
    gap: 20px;
    flex: 0 0 auto;
    min-height: 140px;
    max-height: 30vh;
  }
  .twinPanel .leftPanel .brandHero .brandHeroTitleViewport {
    height: 64px;
  }
  .twinPanel .leftPanel .brandHero .brandHeroTitleTrack .brandHeroTitleSlide {
    font-size: 26px;
    line-height: 32px;
  }
  .twinPanel .leftPanel .brandFeatures {
    display: none;
  }
  .twinPanel .rightPanel.formSide {
    padding: 15px;
    flex: 1 1 auto;
  }
  .twinPanel .rightPanel.formSide.keyboardOpen {
    padding-top: 10px;
  }
  .twinPanel .rightPanel.formSide .header {
    padding: 0;
  }
  .twinPanel .rightPanel.formSide .middle .form {
    width: 100%;
    padding: 24px 8px;
    gap: 20px;
  }
  .twinPanel .rightPanel.formSide .middle.keyboardOpen {
    padding-top: 0;
  }
  .twinPanel .rightPanel.formSide .middle .form.keyboardOpen {
    padding-top: 10px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .input {
    height: 60px;
    border-radius: 15px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .inputPanel .keyboardToggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard {
    padding: 10px;
    border-radius: 16px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols10,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols12,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols11,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols9,
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey {
    min-height: 42px;
    font-size: 14px;
  }
  .twinPanel .rightPanel.formSide .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action {
    min-height: 38px;
    font-size: 11px;
  }
}

.pwaInstallBanner {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #283048, #3D4764);
  box-shadow: 0 12px 32px rgba(14, 33, 63, 0.35);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pwaInstallBanner.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pwaInstallBanner .pwaInstallIcon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
}

.pwaInstallBanner .pwaInstallIcon img {
  width: 100%;
  height: 100%;
  display: block;
}

.pwaInstallBanner .pwaInstallText {
  flex: 1;
  min-width: 0;
}

.pwaInstallBanner .pwaInstallTitle {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.pwaInstallBanner .pwaInstallDesc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.pwaInstallBanner .pwaInstallActions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pwaInstallBanner .pwaInstallConfirm,
.pwaInstallBanner .pwaInstallDismiss {
  border: none;
  border-radius: 9px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.pwaInstallBanner .pwaInstallConfirm {
  background: #fff;
  color: #0E213F;
}

.pwaInstallBanner .pwaInstallDismiss {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .pwaInstallBanner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
