.ovw-guest-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}
.ovw-guest-modal.is-open{
  display: block;
}
.ovw-guest-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(19, 9, 34, .55);
}
.ovw-guest-dialog{
  position: relative;
  width: min(92vw, 520px);
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eadff5;
  box-shadow: 0 18px 40px rgba(43, 16, 74, .28);
  padding: 28px 24px 24px;
}
.ovw-guest-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f5f0fb;
  color: #6f3ca8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ovw-guest-dialog h3{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  color: #4c2a74;
  font-weight: 900;
}
.ovw-guest-text{
  margin: 0;
  color: #514866;
  font-size: 17px;
}
.ovw-guest-actions{
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.ovw-guest-btn{
  flex: 1;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-weight: 800;
}
.ovw-guest-login{
  color: #fff;
  background: linear-gradient(90deg,#512BD4,#E11D74);
}
.ovw-guest-register{
  color: #4c2a74;
  border: 1px solid #d8c8ea;
  background: #fff;
}
html.ovw-modal-open{
  overflow: hidden;
}
