* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: #f6f7fb;
  background: #101418;
  font-family: Arial, Helvetica, sans-serif;
}

.home-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(10, 14, 18, 0.62), rgba(10, 14, 18, 0.88)),
    url("/assets/icons/background.png") center / cover no-repeat,
    #101418;
}

.home-panel {
  width: min(100%, 460px);
  display: grid;
  gap: 20px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.brand-kicker {
  color: #c7d1da;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1;
}

.home-copy {
  margin: 0;
  color: #d9e0e7;
  line-height: 1.55;
}

.meeting-form {
  display: grid;
  gap: 10px;
}

label {
  color: #cbd5df;
  font-size: 13px;
}

input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
  font-size: 16px;
  outline: none;
}

input:focus {
  border-color: #59c8a8;
}

.room-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.primary-button,
.icon-button {
  border: 0;
  border-radius: 8px;
  color: #08110f;
  background: #59c8a8;
  cursor: pointer;
}

.primary-button {
  height: 46px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}

.icon-button {
  height: 44px;
  font-size: 22px;
}

@media (max-width: 560px) {
  .home-shell {
    place-items: start center;
    padding: 24px 16px;
  }

  h1 {
    font-size: 42px;
  }
}
