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

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

html,
body {
  min-height: 100%;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  max-width: 240px;
  margin: 0 auto;
}

.logo-outer {
  display: flex;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: 4rem;
  background: rgba(245, 245, 245, 0.5);
  box-shadow: 0 3px 4px 0 rgba(18, 18, 18, 0.1) inset;
}

.logo-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8rem;
  background: #fff;
  padding: 0.625rem;
  box-shadow: 0 1px 2px 0 rgba(174, 174, 174, 0.25);
}

.logo {
  width: 1.5rem;
  height: 1.5rem;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.title {
  color: #262626;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 0;
}

.subtitle {
  color: #fd5321;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 0;
}

.desc {
  color: #6b7280;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.btn {
  text-decoration: none;
  display: flex;
  padding: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  border-radius: 1.75rem;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
  color: #525252;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
  text-decoration: none;
  color: #525252;
}

.btn:hover {
  background: #e0e0e0;
}

.vox-icon {
  width: 4.4813rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin: 0 auto;
}

.vox-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .main-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
