@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --my-font-family: "Mulish", sans-serif;
  --orange: #F5DB00;
}
body {
  max-height: 100vh;
  min-height: 100vh;
  min-width: 100vw;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-family:var(--my-font-family);
  background: rgba(158, 240, 26, 1);
  font-optical-sizing: auto;
}
.keywords{
  background: red;
}
.keywords .login_wrap{
}

.hidden{
  display: none!important;
}

.login_wrap{
  height: calc(100vh);
  flex-direction: column;
  padding-top: 13%;
  padding-bottom: 40px;
  width: 312px;
  margin: auto;
}
.resizeButtons .buttons {
  position: relative;
  bottom: 0;
}
.login_wrap .login_block{
  width: 100%;
  text-align: center;
}
.login_top{
  text-align: center;
}
.login_top img{
  width: 183px;
}
.login_top h3{
  font-size: 16px;
  margin: 24px 0 24px;
}


/*******************************************/

.grid{
  position: relative;
  display: block;
}

/* Стили для label */
label {
  padding: 1px 9px 1px 28px;
  color: rgba(96, 125, 139, 1);
  border-radius: 4px;
  font-size: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: top 0.3s ease-out;
  position: absolute;
  top: 17px;
  left: -12px;
}


/* Стили для input */
input {
  padding: 32px 23px 12px 15px;
  border: 1px solid rgba(11, 111, 27, 0.6);
  border-radius: 5px;
  margin: 0;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  font-size: 16px;
}

input:focus{
  outline: none;
}

.grid.active input{
  padding: 28px 23px 11px 23px;
}
button{
  font-family: var(--my-font-family);
}
.buttons{
  position: absolute;
  bottom: 51px;
  width: 312px;
  text-align: center;
}

.buttons button,
.buttons input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 12px 20px;
  margin: 10px 0;
  font-size: 14px;
  background: rgba(0, 0, 0, 1);
  color: white;
  transition: 0.3s ease-out;
}

.buttons button:hover,
.buttons input:hover{
  background: #4a4a4a;
  cursor: pointer;
}
.buttons .sendOTPRepeat{
  background: transparent;
  color: #212121;
  padding: 0;
  font-size: 12px;
  text-decoration: underline;
}
.buttons .sendOTPRepeat:hover{
  background: transparent;
}
.errorGrid label{
  color: red;
}
.errorGrid input{
  border-color: red;
}

.error{
  color: #e60000;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}
.error::first-letter {
  text-transform: uppercase;
}
.sessionScope{
  text-align: left;
}
.repeat_otp_block{
  margin-top: 18px;
  margin-bottom: 20px;
}
.repeat_otp{
  font-size: 14px;
  display: inline-block;
  width: 70%;
}
.sendOTPRepeat{
  color: rgba(0, 0, 0, 1);
  background: transparent;
  text-decoration: underline;
  border: none;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.cansel{
  cursor: pointer;
  background: transparent;
  color: black;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.limit_error{
  font-size: 14px;
}
.limit_error .phoneClient{
  display: inline-block;
}

@media only screen and (max-width: 650px) {
  .login_wrap{
    padding-top: 40%;
    padding-bottom: 55px;
  }
  .resizeButtons.login_wrap {
    padding-top: 20%;
  }
}

