html, body{
  margin: 0;
  padding: 0;
  color: #1f4568;
  scroll-behavior: smooth;
}

.box{
  width: 300px;
  padding: 40px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  border-radius: 15px;
}
.box-h2{
  color: #1f4568;
  font-weight: 500;
}
.box-input[type = "text"],.box input[type = "password"],.box input[type = "email"]{
  border:0;
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #3a9fff;
  padding: 10px 6px;
  width: 160px;
  outline: none;
  color: #1f4568;
  border-radius: 24px;
  transition: 0.25s;
}
.box-input[type = "text"]:focus,.box input[type = "password"]:focus,.box input[type = "email"]:focus{
  width: 180px;
  border-color: #0084ff;
}
.box-input[type = "submit"]{
  border:0;
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #6f79ff;
  padding: 10px 36px;
  outline: none;
  color: #1f4568;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer;
}
.box-input[type = "submit"]:hover{
  color: #fff;
  background: #6f79ff;
}

.price-box__wrap {
  padding: 45px 95px 45px 95px !important;
}

.price-box__wrap:hover {
  backface-visibility: hidden;
  transform: scale(1,1) !important;
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
}

.error{
  border:0;
  background: none;
  display: block;
  margin: 10px auto;
  text-align: center;
  padding: 0px 0px;
  outline: none;
  color: #1f4568;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer;
}