body {
  margin: 0;
  font-family: "Adobe Clean", sans-serif;
  background: url('../../../libs/granite/core/content/login/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: flex-end; /* move content to the right */
  align-items: center;       /* vertical center */
  padding-right: 5%;         /* add spacing from right edge */
}

#loginBox {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 380px;
  max-width: 90%;
}

h2 {
  margin-bottom: 1.5em;
  text-align: center;
  color: #333;
  font-size: 1.8em;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  margin-top: 1em;
  color: #444;
}

input {
  width: 100%;
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

button {
  margin-top: 2em;
  width: 100%;
  padding: 0.8em;
  background-color: #1473e6;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #0d66d0;
}

#qrCodeContainer {
  text-align: center;
  margin-top: 1em;
}
