.my-popup {
  max-width: 750px;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 27, 46, 0.98) 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(20, 184, 166, 0.1);
}

.my-popup-left,
.my-popup-right {
  width: 50%;
}

.my-popup-left {
  text-align: center;
}

.my-popup-left img {
  width: 250px;
}

.my-popup-right .ti {
  margin-bottom: 30px;
}
input,
select {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0px auto 16px;
  border: 1px solid rgba(20, 184, 166, 0.4);
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  font-size: 18px;
  color: #e2e8f0;
  padding-left: 26px;
  height: 56px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

input::-moz-placeholder {
  color: #94a3b8;
}

input:-moz-placeholder {
  color: #94a3b8;
}

input::placeholder {
  color: #94a3b8;
}

.prices {
  width: 100%;
  text-align: center;
  font-size: 0px;
  margin: 0px 0px 15px;
}

.new {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  text-transform: uppercase;
  margin: 5px;
  color: #14b8a6;
}

.new b {
  font-size: 39px;
  color: #2dd4bf;
}

.old {
  display: inline-block;
  vertical-align: middle;
  font-size: 19px;
  color: rgb(178, 178, 178);
  margin: 5px;
}

.btnn {
  line-height: 80px;
  display: block;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  width: 250px;
  height: 56px;
  line-height: 56px;
  border: 0 none;
  outline: none;
  text-align: center;
  color: #0c0c14;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btnn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.5);
  color: #0c0c14;
}
@media screen and (max-width: 787px) {
  .my-popup {
    width: 270px;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    padding: 10px;
          margin: 0 auto;
  }
  .my-popup-left,
  .my-popup-right {
    width: 100%;
  }
  .my-popup-left img {
    max-width: 280px;
  }
input, select {
    padding-left: 0;
    padding: 0 5px;}
}