body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  background-color: #f4f6ff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  margin: 16px auto 0;
  max-width: calc(100% - 16px);
  min-width: 280px;
  text-rendering: optimizeLegibility;
  width: 100%;
}

.form {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.message {
  display: none;
  align-items: center;
  color: #006400;
  font-size: 5vh;
  font-weight: 500;
  justify-content: center;
  text-align: center;
}

.message__active {
  display: flex;
}

.message__active_error {
  display: flex;
  color: #ff0000;
  font-weight: 600;
}

button {
  background-color: #4865ff;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 8px;
  text-align: center;
  width: 200px;
}

button:hover {
  cursor: pointer;
}

.input-id-sent {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  height: 34px;
  line-height: 14px;
  outline: none;
  padding: 7px 5px;
  width: 200px;
}

.qr-header {
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  text-align: center;
}

.link {
  font-size: 16px;
}

.frame {
  height: 100vh;
  width: 100vw;
}

.linktext {
  margin-left: 20px;
  margin-right: 20px;
}

.authorization {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
  max-width: 240px;
  padding: 16px 24px 0;
  width: 100%;
}

.authorization_disabled {
  display: none;
  visibility: hidden;
}

.authorization__field {
  border: none;
  border-bottom: 1px solid #808080;
  outline: none;
  padding: 2px;
  width: 100%;
}

.authorization__error {
  color: red;
  font-size: 0;
  opacity: 0;
  transition: 0.9s ease-out;
  margin-bottom: 4px;
}

.authorization__error_visible {
  font-size: 16px;
  opacity: 0.9;
  text-align: center;
}

.qr-page {
  display: none;
}

.qr-page_visible {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  overflow: auto;
  max-width: 300px;
}

#qr-reader {
  
}