html,
body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
}

#container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

#overlay-text {
  top: 50%;
  left: 50%;
  z-index: 10;
  position: fixed;
  transform: translate(-50%, -50%);

  padding: 1rem 1rem;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);

  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#overlay-text input#new-password {
  width: 100%;
  min-width: 25rem;
  border: none;
  outline: none;
  font-size: small;
  padding: 1rem 1rem;
  border-radius: 16px;
  box-sizing: border-box;

  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
}

#action-row {
  gap: 1rem;
  display: flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: space-between;
}

#overlay-text button#reset-btn {
  border: none;
  font-size: small;
  padding: 1rem 1rem;
  border-radius: 16px;

  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);

  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  cursor: pointer;
}

#overlay-text p#message {
  color: #444;
  font-size: small;
  font-weight: bolder;
}

.store-buttons {
  gap: 1rem;
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

.store-buttons img {
  height: 50px;
}

img.sticker {
  width: 25vw;
  position: absolute;

  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

.footer-buttons {
  gap: 1rem;
  right: 1rem;
  z-index: 10;
  bottom: 1rem;
  display: flex;
  position: fixed;
}

a.glass-button {
  color: inherit;
  text-decoration: none;

  border: none;
  font-size: small;
  padding: 1rem 1rem;
  border-radius: 16px;

  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);

  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  cursor: pointer;
}
