html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  background-color: #ffffff;
}

body, input, button {
  font-family: "Outfit", sans-serif;
}

a {
  color: rgba(255 255 255 / 0.8);
  cursor: pointer;
}

a:hover {
  color: rgba(255 255 255 / 1.0);
}

.environmentWarningLabel {
  color: rgba(255 255 255 / 1.0);
  text-align: center;
  vertical-align: middle;
}

/* FormScreen */

.FormScreen h1, .FormScreen h2, .FormScreen h3 {
  color: rgba(255 255 255 / 0.9);
  font-weight: 400;
}

.FormScreen, .FormScreen input, .FormScreen button {
  color: rgba(255 255 255 / 0.9);
  font-size: 18px;
}

.FormScreenReady button {
  cursor: pointer;
}

.FormScreenBusy input, .FormScreenBusy button {
  cursor: progress;
}

.FormScreen button {
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  border-style: solid;
  border-width: 1px;
  border-radius: 16px;
}

.FormScreen button.Primary {
  font-size: 22px;
  padding: 8px;
  border-color: rgba(255 255 255 / 0.8);
}

.FormScreen button.Secondary {
  font-size: 20px;
  padding: 6px;
  color: rgba(255 255 255 / 0.8);
  border-color: rgba(255 255 255 / 0.0);
}

.FormScreen button:hover {
  border-color: rgba(255 255 255 / 1.0);
  color: rgba(255 255 255 / 1.0);
}

.FormScreen button[disabled] {
  color: rgba(255 255 255 / 0.3);
}

.FormScreen input[type="text"] {
  background: rgb(235 235 235);
  border-radius: 16px;
  border: none;
  color: rgb(0 0 0 / 0.9);
  padding-left: 18px;
  padding-right: 18px;
}

.FormScreen input[type="text"], .FormScreen .TextFieldSuffix {
  font-size: 28px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.FormScreen .TextFieldSuffix {
  padding-left: 8px;
  padding-right: 0;
}

.FormScreen > div > * {
  margin: 8px 24px;
}

.FormScreen > div > .Toolbar {
  margin-left: 0;
  margin-right: 0;
}

.FormScreen p {
  color: rgba(255 255 255 / 0.8);
  margin-top: 4px;
  margin-bottom: 12px;
}

.FormScreen .SectionTitle {
  font-size: 22px;
  color: rgba(255 255 255 / 0.75);
  margin-top: 32px;
  margin-bottom: 12px;
}

.FormScreen h3.CheckboxLabel {
  color: rgba(255 255 255 / 1.0);
  margin: 4px 0;
  font-size: 22px;
}

.FormScreen input[type="checkbox"], .FormScreen input[type="radio"] {
  transform: scale(1.5);
}

.FormScreen .SmallText {
  font-size: 14px;
}

.FormScreen .FinePrint {
  font-size: 14px;
  color: rgba(255 255 255 / 0.6);
}

/* SignUpScreen */

.SignUpScreen {
  background: #a100f1;
  background: linear-gradient(177deg, rgba(161, 0, 241, 1) 0%, rgba(20, 0, 105, 1) 100%);
}

.SignUpFormScreen button:hover {
  background-color: rgb(108 34 179 / 0.3);
}

/* BuildYoursScreen */

.BuildYoursScreen {
  background: #4c6d81;
}

/* InviteScreen */

.InviteScreen {
  background: #1d72c2;
  background: linear-gradient(135deg, rgba(29, 114, 194, 1) 0%, rgba(70, 112, 75, 1) 56%, rgba(35, 9, 74, 1) 100%);
}

/* Toolbar */

.Toolbar {
  height: 64px;
  padding: 0 24px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.ToolbarTitle {
  font-size: 24px;
  color: rgb(255 255 255 / 0.9)
}

/* TeaserScreen */

.TeaserScreen {
  background-color: #00C55F;
}

.TeaserScreen a {
  text-decoration: none;
}

.TeaserScreen h1, .TeaserScreen h2, .TeaserScreen h3 {
  font-weight: 400;
  color: rgba(0 0 0 / 0.8);
}

/* ComputerListUi */

.ComputerListScreen {
  background: #043c70;
  background: linear-gradient(63deg,rgba(4, 60, 112, 1) 0%, rgba(189, 81, 189, 1) 56%, rgba(209, 63, 10, 1) 100%);
}

.ComputerListScreen .SmartphoneFrame {
  cursor: pointer;
}

.NameOverlay {
  padding: 10px;
  font-size: 60px;
  color: rgba(255 255 255 / 0.9);
  background-color: rgba(0 0 0 / 0.5);
  transition: all 200ms ease-in;
}

.SmartphoneFrame:hover .NameOverlay {
  color: rgba(255 255 255 / 1.0);
  background-color: rgba(0 0 0 / 0.3);
}
