* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #020609;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.app {
  width: 100vw;
  height: 100vh;
  position: relative;
  background:
    linear-gradient(
      to bottom,
      rgba(2,6,9,.08),
      rgba(2,6,9,.18) 35%,
      rgba(2,6,9,.55) 72%,
      rgba(2,6,9,.82) 100%
    ),
    url('/static/img/migorix-city.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.screen {
  display: none;
  width: 100%;
  height: 100%;
  padding: 36px 28px 34px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.screen.active {
  display: flex;
}

.brand-mark {
  width: 94px;
  height: 94px;
  border: 9px solid #f4f7f6;
  border-right-color: rgba(244,247,246,.25);
  border-radius: 50%;
  position: relative;
  margin-top: 34px;
  margin-bottom: 18px;
}

.brand-mark::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #39d98a;
  border-radius: 50%;
  position: absolute;
  right: 4px;
  top: 4px;
}

h1 {
  font-size: 42px;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 16px;
}

.screen h1 {
  margin-top: 0 !important;
}

h1 span {
  color: #39d98a;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}

p {
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  font-size: 16px;
  margin-bottom: 28px;
}

.screen button {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #41e38f, #24b96d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.screen button.secondary {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}

small {
  color: rgba(255,255,255,.54);
  font-size: 13px;
  line-height: 1.4;
}
