html {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: auto;
  position: relative;
}

#ultra-security {
  background: center/contain no-repeat url('./assets/bg.png');
  width: 100vw;
  height: 100vh;
  position: relative;
}

@media (max-width: 855px) {
  #ultra-security {
    background-size: cover;
  }

  #pass-error {
    top: -3%;
  }
}

#ultra-security .input-container {
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  margin: auto;
  padding: 0 20px;
  top: -15%;
}

#ultra-security .input-container span {
  background: #7156AB;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


#ultra-security .input-container input {
  background: white;
  color: #0C0124;
  border: none;
  outline: none;
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  flex: 1;
}

#ultra-security .input-container button {
  background: #0C0124;
  color: white;
  text-transform: uppercase;
  padding: 0.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

#ultra-security .input-container button:hover {
  background: #e6d3a1;
}

#pass-error {
  color: white;
  font-weight: bold;
  margin-top: 0.5rem;
  position: absolute;
  inset: 0;
  margin: auto;
  top: -7%;
  background: rgba(255, 42, 42, 0.979);
  width: max-content;
  height: max-content;
  padding: 4px;
}

#pass-error.hidden {
  display: none;
}
