* { padding: 0; margin: 0; }

html, body {
  height: 100%;
  background: #ffffff;
}

#container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#list-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#loginBox {
  width: 90%;
  text-align: center;
  background-color: #ffffff;
  font-size: 2.5vw;
  font-weight: bold;
}
.input-form-box {
  border: 0px solid #ff0000;
  display: flex;
  margin-bottom: 5px;
}
.input-form-box > span {
  display: block;
  text-align: left;
  padding-top: 1%;
  margin-left: 10%;
  min-width: 25%;
}
.button-login-box {
  margin: 10px 0;
  width: 80%;
  height: 20%;
}


button.reg {
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 10px;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
  transition: 0.4s;
  color: white;
  background-color: royalblue;
}

button.log {
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 10px;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
  transition: 0.4s;
  color: royalblue;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid royalblue;
  margin-top: 2vh;
}

button:hover {
  color: white;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.6);
  background-color: royalblue;
}


#loginBoxTitle {
  /*TALSAJU LOGIN 큰 글자*/
  color:#000000;
  font-weight: bold;
  font-size: 8vw;
  text-transform: uppercase;
  padding: 5px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #270a09, #8ca6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#inputBox {
  margin: 10px;

  text-align: center;
}

#inputBox button {
  padding: 3px 5px;
}