:root {
  --text-color: #333;
  --link-color: #0047ed;

  --title-color: var(--text-color);
  --title-size: 24px;

  --button-padding-vertical: var(--sem-dimension-spacing-lg, 12px);
  --button-width: 72px;
}

body {
  background-color: #f0f1f2;
}

h1,
p,
a,
span {
  font-family: var(--font-family, 'Lato', 'Open Sans');
  margin: 0;
}

a,
p,
span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h1 {
  color: var(--title-color);
  font-size: var(--title-size);
  font-weight: 800;
}

p {
  color: var(--text-color);
}

a {
  color: var(--link-color);
}

.container {
  min-width: 360px;
  max-width: 570px;
  margin-inline: auto;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 0;
  gap: 8px;

  img {
    height: 30px;
  }
}

.form-container {
  border-radius: 4px;
  background-color: #fff;
  padding: 32px;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;

  crnt-radio-group {
    width: 100%;
  }
}

.footer {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;

  :last-child {
    margin-left: auto;
  }
}

crnt-button,
crnt-button-alt {
  width: var(--button-width);
}
