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

html,
body {
  background: #e02020;
  min-height: 80vh;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container {
  width: 100%;
  max-width: 400px;
  padding: 32px 16px 16px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon {
  font-size: 40px;
  margin-bottom: 24px;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-align: center;
}
p {
  font-size: 1rem;
  margin: 0 0 16px 0;
  text-align: center;
}
.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 0 0;
}
.mdn-Button--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.mdn-Button--white {
  background: #fff;
  color: #e02020;
  border: none;
}
.mdn-Button--fullWidth {
  width: 100%;
  padding: 16px 0;
  font-size: 1rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.back-btn {
  margin-top: 32px;
  background: #fff;
  color: #e02020;
  border: none;
  width: 100%;
  padding: 16px 0;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.icon {
  font-size: 40px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .container {
    max-width: 100vw;
    padding: 24px 8px 8px 8px;
  }
  h1 {
    font-size: 1.5rem;
  }
}
.not-ios-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  background: #e02020;
}
.loader {
  border: 6px solid #e02020;
  border-top: 6px solid #f3f3f3;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.not-ios-message {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  max-width: 300px;
}

#logo {
  margin-bottom: var(--spacing-stack-xl);
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 20px 0px 20px;
  text-align: center;
}