html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  box-sizing: border-box;
  background: #8f1e64 url('/images/bg.jpg');
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

html,
body {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

.central {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 2rem;
}

main {
  max-width: 570px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  background-image: linear-gradient(180deg, #ffffff 0%, #f3eef7 100%);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.21), 0 10px 54px 0 rgba(0, 0, 0, 0.21),
    0 30px 104px 0 rgba(0, 0, 0, 0.21), 0 60px 144px 0 rgba(0, 0, 0, 0.21);
  border-radius: 6px;
  margin: auto;
}

.logo {
  margin: 0 auto 2rem;
}

.content {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 40rem) {
  .actions {
    flex-direction: row;
  }
}

.btn {
  flex: 1 1 33.333%;
  display: inline-block;
  background-image: linear-gradient(180deg, #54d742 0%, #7ead00 100%);
  border: 1px solid #8caa3f;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 0.7rem 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: #f8f5fa;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 1.125rem;
}

.btn--secondary {
  background-image: linear-gradient(180deg, #9942d7 0%, #7500ad 100%);
  border: 1px solid #7501ad;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}

.btn--tertiary {
  background-image: linear-gradient(180deg, #695ee0 0%, #0008ad 100%);
  border: 1px solid #040baf;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.24);
  border-radius: 5px;
}

.btn:hover {
  background: #7ead00;
}

.btn--secondary:hover {
  background: #7500ad;
}

.btn--tertiary:hover {
  background: #0008ad;
}
