/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 145:0 Unexpected "<"

**/
<style>
.reg__hero{
  height:320px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.reg__hero-overlay{
  background:rgba(0,0,0,.55);
  height:100%;
  display:flex;
  align-items:center;
}

.reg__hero-content{
  color:#fff;
  padding:0 60px;
}

.reg__app{
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:8px;
  font-size:14px;
}

.reg__container{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
}

.reg__grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

.reg__card{
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:14px;
  padding:28px;
  margin-bottom:28px;
}

.reg__fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.reg__field-wrap{
  display:flex;
  flex-direction:column;
}

.reg__fields input,
.reg__fields select{
  width:100%;
  padding:14px 16px;
  font-size:16px;
  border:1px solid #dcdcdc;
  border-radius:10px;
  background:#fff;
  box-sizing:border-box;
  min-width:0;
}

.reg__fields input::placeholder{
  color:#777;
  white-space:nowrap;
}

.reg__helper{
  font-size:13px;
  color:#777;
  margin-top:6px;
}

.reg__bracket{
  display:flex;
  gap:12px;
  padding:12px;
  border:1px solid #eee;
  border-radius:10px;
  margin-bottom:10px;
  cursor:pointer;
  transition:.15s ease;
}

.reg__bracket:hover{
  border-color:#232C34;
}

.reg__meta{
  font-size:13px;
  color:#666;
}

.reg__summary-card{
  position:sticky;
  top:100px;
  border:1px solid #e5e5e5;
  border-radius:14px;
  padding:28px;
  background:#fff;
}

.reg__total{
  font-weight:700;
  font-size:18px;
  margin-top:15px;
}

.reg__submit{
  width:100%;
  padding:16px;
  background:#232C34;
  color:#fff;
  border:none;
  border-radius:10px;
  font-weight:700;
  font-size:16px;
  margin-top:20px;
  cursor:pointer;
}

/* MOBILE FIX */
@media(max-width: 900px){
  .reg__grid{
    grid-template-columns:1fr;
  }
  .reg__fields{
    grid-template-columns:1fr;
  }
}
</style>