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

#auth {
  display: flex;
  position: absolute;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  background-color: #000;
  border-radius: 10px;
  height: auto;
  max-height: 100vh;
  max-width: 100vw;
  padding: 20px;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.auth-label {
  font-size: 55px;
  margin: 10px;
  color: #fff;
}

.auth-input {
  font-size: calc(2vh + 1vw);
  background-color: transparent;
  border-radius: 6px;
  width: 25vw;
  height: auto;
  max-height: 100vh;
  position: relative;
  align-items: center;
  display: flex;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.auth-input::placeholder {
  color: #fff;
  font-size: calc(2vh + 1vw);
  text-align: left;
  margin-left: 5px;
}

.auth-enter {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 40px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.3s ease background-color 0.3s ease;
}

.auth-enter:hover {
    background-color: #fff;
    color: #000;
}
