@charset "UTF8";
.wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
table {
  position: fixed;
  inset: 0;
  margin: auto;
  border: 2px solid #000;
  padding: 10px;
  border-collapse: collapse;
  width: 500px;
}
th {
  background-color: #00349d;
  color: #ffffff;
  text-align: center;
  font-weight: lighter;
  border-bottom: 1px solid #000;
  padding: 5px;
  letter-spacing: 0.5px;
  font-size: 22px;
}
tr.textarea {
  text-align: center;
}
input[type="text"]:focus {
  border: 1px solid #00349d;
  outline: 0;
}
input[type="password"]:focus {
  border: 1px solid #00349d;
  outline: 0;
}
input.textarea {
  width: 70%;
  height: 35px;
  border: 1px solid #d3d3d3;
  padding-left: 10px;
}
.text {
  padding-left: 15%;
  font-size: 12px;
}
button {
  width: 65%;
  height: 40px;
  background-color: #00349d;
  border-color: #00349d;
  border-radius: 3px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}
button:hover {
  background-color: #0048d8;
  border-color: #0048d8;
}
button:active {
  transform: translate3d(0, 2px, 0);
}
.login-id {
  margin-top: 15px;
}
.login-pw {
  margin-top: 15px;
}
.login-auth {
  margin: 30px 0px 15px 0px;
}
@media screen and (max-width: 768px) {
  table {
    width: 70%;
  }
  th {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  table {
    width: 90%;
  }
  th {
    font-size: 22px;
  }
  .text {
    font-size: 16px;
  }
  input.textarea {
    font-size: 16px;
  }
  button {
    font-size: 16px;
  }
}

.error-message {
  display: flex;
  justify-content: center;
  font-size: 15px;
  color: red;
  margin: 0;
  padding-top: 17px;
}
