:root {
  --color--background: #f3f4f6;
  --color--secondary-background: #e5e7eb;
  --color--main-text: #000;
  --color--secondary-text: #7a7a7a;
  --color--third-text: #6b7280;
  --color--fourth-text: #fff;
  --color--decorative-text: #1f2937;
  --color--decorative-element: #002366;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #8a8784;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  padding: 20px;
  background-color: var(--color--secondary-background);
  box-shadow: 0px 0px 10px #0000001a;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
}

.qrcode {
  margin: 20px auto;
  display: flex;
  justify-content: center; 
}

h1 {
  color: #000;
  font-size: 30px;
  margin-bottom: 20px;
}

hr {
  margin: 20px 0;
  border: 1px solid var(--color--decorative-text);
  width: 100%;
}

input {
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid var(--color--decorative-text);
  text-align: center;
}
