body {
  background: linear-gradient(to bottom right, #334a7e, #ffffff) fixed;
  color: #ffffff;
}

th {
  text-align: right;
}

.error {
  background-color: #fa1111;
  color: #faf9f9;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  border: 1px;
  border-radius: 5px;
}

.success {
  background-color: #87E973;
  color: #000000;
  text-align: center;
  padding: 15px;
  font-size: 14pt;
  font-weight: bold;
  margin-top: 20px;
  border: 1px;
  border-radius: 5px;
}

.message {
  background-color: #e8f1eb;
  color: #5190ab;
  text-align: center;
  padding: 15px;
  font-size: 14pt;
  font-weight: bold;
  margin-top: 20px;
  border: 1px;
  border-radius: 5px;
}

pre {
     color: black;
}

.button {
  border: 2px solid #fff;
  border-radius: 8px;
  background-color: #0a1c45;
  color: #ffffff;
}

.button:hover {
    background-color: #51e033;
    color: #0a1c45;
}


.button:active {
    transform: translateY(2px);
}


/*============*/

.pinBox {
  --width: 190px;
  --height: 28px;
  --spacing: 17px;

  display: inline-block;
  position: relative;
  width: var(--width);
  height: var(--height);
  border: 3px solid gray;
  margin: 0;
  background-color: lightgrey;
}

.pinEntry-wrapper {
    margin-bottom: 3rem;
}


 .pinEntry {
     width: 100%; /* Adjust the width of the input box */
     font-size: 24px; /* Adjust the font size to fit */
     padding: 5px; /* Add padding inside the input */
     text-align: center; /* Center the text */
     box-sizing: border-box; /* Include padding and border in width/height calculations */
     letter-spacing: 15px;
     color: green;
 }


.container {
    position: relative;
    width: 100vw;
    height: 100vh;
}


.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    clip-path: polygon(50% 0%, 75% 35%, 100% 50%, 75% 65%, 50% 100%, 25% 65%, 0% 50%, 25% 35%);
    animation: starDrift 25s infinite;
    /*animation: fade 25s infinite;*/
}

@keyframes starDrift {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(100vh);
    }
}


#login {
    margin-top: 100px;
}

#login-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.spacer {
    margin-top: 4rem;
}

.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    opacity: 0.6;
}

.pw-eye svg {
    width: 18px;
    height: 18px;
    stroke: #888;
    fill: none;
    stroke-width: 2;
}

.pw-eye:hover {
    opacity: 1.0;
}
