html, body {
  margin: 0;
  padding: 0;
  height: 100%;

}

@media screen and (max-width: 1200px) {
  #pin { display: none; }
  #pinpad { display: block !important; }
  #pinmob { display: none; }
}

@media screen and (max-width: 767px) {
  #pin { display: none; }
  #pinpad { display: none !important; }
  #pinmob { display: block !important; }
}

.modalv {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -33%);
  display: block;
  /*background: #fff;*/
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1;
  width: 90%;
  max-width: 400px;
}

.modalv h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: black;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-buttons button {
  width: 170px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff6f61;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s linear;
  color: #fff;
  font-weight: 600;
  font-size: 20px; /* ← вот это добавь или измени */
}

.modal-buttons .yes {
  background-color: #0abab5;
  font-weight: 600;
}

.modal-buttons .no {
  background-color: rgb(224, 44, 44);
  font-weight: 600;
}