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

p {
  margin: 0;
  padding: 0;
}

:root {
  --headerHeight: 70px;
}

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%;
}

.twinPanel .leftPanel {
  flex: 1 0 0;
  background-color: #fff;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

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

.twinPanel .leftPanel .header {
  display: flex;
  padding: 15px;
  align-items: flex-start;
  align-self: flex-start;
}

.twinPanel .leftPanel .header .logo {
  max-height: 60px;
}

.twinPanel .leftPanel .header .close {
  position: fixed;
  right: 25px;
  top: 25px;
  background-image: url(../images/svg/Cikis_Kirmizi.svg) !important;
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
}

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

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

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

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

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

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

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

.twinPanel .leftPanel .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 .leftPanel .middle .form .elements .bottomBlok {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

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

.twinPanel .leftPanel .middle .form .elements .bottomBlok .inputPanel .inputRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

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

.twinPanel .leftPanel .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;
  padding: 0 15px;
  color: #0E213F;
  align-self: stretch;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  transition: 0s all !important;
}

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

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

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

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

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

.twinPanel .leftPanel .middle .form .elements .bottomBlok .inputPanel .keyboardToggle {
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #17315b 0%, #0E213F 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 10px;
  min-height: 50px;
}

.twinPanel .leftPanel .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 .leftPanel .middle .form .elements .bottomBlok .touchKeyboard.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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

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

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

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

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

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

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

.twinPanel .leftPanel .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 .leftPanel .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 .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action {
  background: rgba(14, 33, 63, 0.08);
  font-size: 12px;
  min-height: 40px;
}

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

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

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

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

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

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

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

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

.twinPanel .leftPanel .middle .form .buttons .button.module {
  font-size: 15px;
  padding: 15px 5px;
  background: rgba(69, 83, 119, 0.2);
  color: rgb(69, 83, 119);
}

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

.twinPanel .rightPanel .multiForm {
  gap: 20px;
  display: flex;
  flex-direction: row;
  max-width: 500px;
  overflow: hidden;
  transition: 0.3s all;
  position: relative;
}

.twinPanel .rightPanel .form {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 500px;
  min-width: 100%;
}

.twinPanel .rightPanel .form .imageArea {
  display: flex;
  width: 500px;
  height: 500px;
  max-width: 500px;
  max-height: 500px;
  width: 500px;
  height: 500px;
  justify-content: center;
  align-items: center;
}

.twinPanel .rightPanel .form .imageArea img {
  max-width: 120%;
  max-height: 100%;
  filter: drop-shadow(0px 0px 50px 0px rgba(255, 255, 255, 0.2));
}

.twinPanel .rightPanel .form .textAreaPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  align-self: stretch;
}

.twinPanel .rightPanel .form .textAreaPanel .textPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.twinPanel .rightPanel .form .textAreaPanel .textPanel .caption {
  align-self: stretch;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.twinPanel .rightPanel .form .textAreaPanel .textPanel .description {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 0;
  line-height: 25px;
}

.twinPanel .rightPanel .navigator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.twinPanel .rightPanel .navigator .direction {
  height: 30px;
  width: 30px;
  border-radius: 7px;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.twinPanel .rightPanel .navigator .direction:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.twinPanel .rightPanel .navigator .direction.left {
  background-image: url(/images/login/left-white.svg);
}

.twinPanel .rightPanel .navigator .direction.right {
  background-image: url(/images/login/right-white.svg);
  background-position: 11px center;
}

.twinPanel .rightPanel .navigator .right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.twinPanel .rightPanel .navigator .pointArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.twinPanel .rightPanel .navigator .pointArea .point {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: #fff;
  opacity: 0.5;
  transition: 0.3s opacity;
}

.twinPanel .rightPanel .navigator .pointArea .point.selected {
  opacity: 1;
}

.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;
}

@media only screen and (max-width: 1200px) {
  .twinPanel .leftPanel .middle .form {
    width: min(560px, 100%);
  }
}

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

  .twinPanel .leftPanel .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 .rightPanel .multiForm {
    max-width: 95%;
  }
  .twinPanel .rightPanel .form {
    max-width: 100%;
  }
  .twinPanel .rightPanel .form .imageArea {
    max-width: 100%;
    max-height: 100%;
  }
  .twinPanel .rightPanel .form .imageArea img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .twinPanel {
    display: initial;
  }
  .twinPanel .leftPanel {
    padding: 15px;
    height: 100%;
    background: url(/images/system/navigator/navigator-body.jpg);
  }
  .twinPanel .leftPanel.keyboardOpen {
    padding-top: 10px;
  }
  .twinPanel .leftPanel .header {
    padding: 0;
  }
  .twinPanel .leftPanel .header .logo {
    max-height: 40px;
  }
  .twinPanel .leftPanel .middle .form {
    width: 100%;
    padding: 24px 8px;
    gap: 20px;
  }
  .twinPanel .leftPanel .middle.keyboardOpen {
    padding-top: 0;
  }
  .twinPanel .leftPanel .middle .form.keyboardOpen {
    padding-top: 10px;
  }
  .twinPanel .rightPanel {
    padding-bottom: 50px;
    height: 100%;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .inputPanel .inputRow {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 10px;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .inputPanel .input {
    height: 60px;
    border-radius: 15px;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .inputPanel .keyboardToggle {
    min-height: 60px;
    border-radius: 15px;
    font-size: 14px;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard {
    padding: 10px;
    border-radius: 16px;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols10,
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols12,
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols11,
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.cols9,
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKeyboardRow.actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKey {
    min-height: 42px;
    font-size: 14px;
  }
  .twinPanel .leftPanel .middle .form .elements .bottomBlok .touchKeyboard .touchKey.action {
    min-height: 38px;
    font-size: 11px;
  }
}
