:root {
  --p: #00a89c;
  --ink: #061a3a;
  --muted: #667085;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(470px, 0.9fr) minmax(600px, 1.1fr);
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}
main {
  display: flex;
  flex-direction: column;
  padding: 34px clamp(34px, 6vw, 95px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font: 800 14px/1.05 Manrope;
}
.brand b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}
.brand span {
  letter-spacing: -0.02em;
}
.card {
  width: min(100%, 430px);
  margin: auto;
}
.eyebrow {
  color: var(--p);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.card h1 {
  font: 800 clamp(34px, 3.3vw, 48px) / 1.05 Manrope;
  letter-spacing: -0.05em;
  margin: 12px 0;
}
.card > p,
.help {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.card form {
  margin-top: 30px;
}
.card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 18px 0;
}
.card input[type="email"],
.card input[type="password"] {
  display: block;
  width: 100%;
  height: 51px;
  border: 1px solid #d4dde5;
  border-radius: 11px;
  padding: 0 14px;
  margin-top: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font: 14px "DM Sans";
  outline: none;
  transition: 0.18s;
}
.card input:focus {
  border-color: var(--p);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 168, 156, 0.11);
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.row label {
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
.row a,
.help a {
  color: #008d84;
  font-size: 12px;
  font-weight: 700;
}
.card button {
  width: 100%;
  height: 51px;
  border: 0;
  border-radius: 11px;
  background: var(--p);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 168, 156, 0.2);
}
.card button:hover {
  background: #008d84;
  transform: translateY(-1px);
}
.help {
  text-align: center;
  margin-top: 18px;
}
.message {
  padding: 12px;
  border-radius: 9px;
  margin-top: 18px;
  font-size: 12px;
  background: #fff0ef;
  color: #b42318;
}
.message.info {
  background: #eff6ff;
  color: #175cd3;
}
.message.success {
  background: #ecfdf3;
  color: #067647;
}
.hidden {
  display: none;
}
main > small {
  text-align: center;
  color: #8a94a6;
  font-size: 12px;
}
.commercial-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #061a3a 0%, #0b3158 60%, #007e78 145%);
  color: #fff;
  display: grid;
  place-items: center;
  padding: clamp(45px, 7vw, 110px);
}
.commercial-panel:before,
.commercial-panel:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.commercial-panel:before {
  width: 440px;
  height: 440px;
  right: -190px;
  top: -190px;
  background: rgba(0, 168, 156, 0.22);
}
.commercial-panel:after {
  width: 300px;
  height: 300px;
  left: -160px;
  bottom: -160px;
  border: 55px solid rgba(0, 168, 156, 0.13);
}
.commercial-content {
  position: relative;
  z-index: 1;
  width: min(100%, 650px);
}
.commercial-tag {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #baf1ec;
}
.commercial-content h2 {
  font: 800 clamp(40px, 4.3vw, 67px) / 1.02 Manrope;
  letter-spacing: -0.055em;
  margin: 22px 0 18px;
}
.commercial-content h2 em {
  color: #2ed2c5;
  font-style: normal;
}
.commercial-content > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: #c6d4e2;
  font-size: 17px;
  line-height: 1.6;
}
.booking-preview {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  transform: rotate(-1deg);
}
.preview-head,
.preview-client {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-head img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.preview-head div,
.preview-client div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.preview-head span,
.preview-client small {
  color: #7a8798;
  font-size: 11px;
}
.preview-head > strong {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5f8f5;
  color: #008d84;
}
.preview-client {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #e7ebef;
  border-radius: 12px;
  background: #fff;
}
.preview-client > span {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 10px;
  background: #e6f7f5;
  color: #007e78;
  font-weight: 800;
}
.preview-client i {
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 20px;
  background: #eaf8f2;
  color: #087857;
  font: 700 10px "DM Sans";
}
.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e8edf1;
  padding-top: 17px;
}
.preview-metrics div {
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  border-right: 1px solid #e8edf1;
}
.preview-metrics div:last-child {
  border: 0;
}
.preview-metrics strong {
  font: 800 18px Manrope;
}
.preview-metrics span {
  color: #7a8798;
  font-size: 10px;
  margin-top: 4px;
}
.commercial-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 24px;
  color: #cfe3e2;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  body {
    grid-template-columns: minmax(420px, 0.9fr) 1.1fr;
  }
  .commercial-panel {
    padding: 45px;
  }
  .preview-metrics div {
    padding-inline: 7px;
  }
}
@media (max-width: 780px) {
  body {
    display: block;
    background: linear-gradient(180deg, #fff, #f3faf9);
  }
  main {
    min-height: 100vh;
    padding: 24px;
  }
  .card {
    margin: auto;
  }
  .commercial-panel {
    display: none;
  }
  main > small {
    margin-top: 20px;
  }
}
@media (max-width: 440px) {
  main {
    padding: 20px;
  }
  .card h1 {
    font-size: 34px;
  }
  .row {
    align-items: flex-start;
  }
  .row a {
    text-align: right;
  }
}
