body {
  font-family: 'Almaden Sans', sans-serif;
}

.header {
  height: 64px;
  align-content: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__button {
  padding: 10px 20px;

  color: #0b5cff;
  font-weight: 600;

  border-radius: 9999px;
  border: 1px solid #0b5cff;
}

.header__button:hover,
.header__button:focus-visible {
  background-color: rgba(11, 92, 255, 0.1);
}

.main {
  flex-grow: 1;
}

.meeting-form {
  width: 360px;
  margin: 125px auto 0 auto;
}

.meeting-form__title {
  margin-bottom: 50px;

  font-size: 24px;
  font-weight: 600;

  text-align: center;
  text-wrap: balance;

  color: #131619;
}

.meeting-form-label__title {
  font-size: 12px;
  color: #747486;
}

.meeting-form-label__title + .meeting-form-label__control {
  margin-top: 10px;
}

input.meeting-form__control[type='text'] {
  padding-inline: 15px;

  width: 100%;
  height: 40px;

  font-size: 15px;
  color: #232333;

  border: 2px solid #eee;
  border-radius: 12px;

  transition: border-color 150ms ease-in-out;
}

input.meeting-form__control[type='text']:focus-visible {
  border-color: #0e72ed;
}

.meeting-form__text {
  margin-top: 15px;

  font-size: 14px;
  text-wrap: pretty;

  line-height: 1.42857143;
  letter-spacing: 0.03em;

  color: #232333;
}

.meeting-form__text > a {
  color: #0956b5;
}

.meeting-form__text > a:hover,
.meeting-form__text > a:focus-visible {
  color: #033a7d;
  text-decoration: underline;
}

.meeting-form__button {
  margin-top: 15px;

  width: 100%;
  height: 40px;

  color: #fff;
  background-color: #0e71eb;

  text-align: center;
  border-radius: 12px;
}

.meeting-form__button:disabled {
  color: rgb(144, 144, 150);
  background-color: rgba(82, 82, 128, 0.09);
}

.footer {
  display: flex;
  justify-content: center;

  height: 56px;
  column-gap: 50px;

  font-size: 14px;
}

.footer__copyright {
  color: #666;
}

.footer__copyright > a:hover,
.footer__copyright > a:focus-visible {
  text-decoration: underline;
}
