body{
  min-height:100vh;
}
.booking-page{
  max-width:620px;
  padding-top:28px;
}
.back-link{
  display:inline-block;
  margin-bottom:20px;
  color:#bbb;
}
.booking-card,
.confirmation-card{
  background:#222;
  border:1px solid #303030;
  border-radius:20px;
  padding:26px;
}
.booking-heading{
  margin-bottom:26px;
}
.booking-heading h1{
  margin:4px 0 8px;
  font-size:36px;
  letter-spacing:-.035em;
}
.mini-label{
  margin:0;
  color:#aaa;
  font-weight:800;
  font-size:12px;
  letter-spacing:.12em;
}
.booking-subtitle{
  margin:0;
  color:#bbb;
}
.field{
  margin:0 0 22px;
}
.field label,
.field legend{
  display:block;
  margin-bottom:9px;
  font-size:15px;
  font-weight:700;
}
.field label span{
  color:#888;
  font-weight:400;
}
input,
textarea{
  width:100%;
  border:1px solid #3a3a3a;
  border-radius:12px;
  background:#181818;
  color:white;
  padding:14px;
  font:inherit;
  outline:none;
}
input:focus,
textarea:focus{
  border-color:#6a6a6a;
}
input[type="date"]{
  color-scheme:dark;
}
.time-slots{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.time-slot{
  border:1px solid #3c3c3c;
  border-radius:11px;
  background:#181818;
  color:#fff;
  min-height:46px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.time-slot:hover{
  border-color:#777;
}
.time-slot.selected{
  background:#fff;
  color:#111;
  border-color:#fff;
}
.slot-message{
  grid-column:1/-1;
  margin:0;
  color:#999;
}
.payment-field{
  border:0;
  padding:0;
}
.payment-option{
  display:flex !important;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid #383838;
  border-radius:12px;
  margin-bottom:10px !important;
  cursor:pointer;
}
.payment-option input{
  width:auto;
  margin:0;
}
.payment-option span{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#fff !important;
}
.payment-option small{
  color:#aaa;
  font-size:14px;
}
.confirm-button,
.done-button{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:999px;
  background:#24a02b;
  color:#fff;
  font:inherit;
  font-weight:800;
  font-size:18px;
  cursor:pointer;
}
.confirmation-card{
  text-align:center;
}
.confirmation-card h2{
  margin:12px 0 10px;
}
.confirmation-card p{
  color:#ccc;
  line-height:1.6;
}
.confirmation-mark{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin:0 auto;
  border-radius:50%;
  background:#24a02b;
  font-size:30px;
  font-weight:900;
}
.done-button{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:22px;
}
.demo-note{
  color:#777;
  text-align:center;
  font-size:12px;
  margin-top:18px;
}
@media(max-width:520px){
  .booking-card,
  .confirmation-card{
    padding:20px;
  }
  .booking-heading h1{
    font-size:31px;
  }
  .time-slots{
    grid-template-columns:repeat(2,1fr);
  }
}
