@import "reset.css";

#login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1920px;
  height: 100vh;
  background-color: #f5f5f5;
  overflow: auto;
}
.login-wrap {
  display: flex;
  flex-direction: row;
  width: 1000px;
  height: 630px;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}
/* 24-05-23 수정 */
.login-box {
  display: flex;
  align-items: start;
  flex-direction: column;
  padding: 204px 85px 0;
  box-sizing: border-box;
  gap: 18px 0;
  width: 500px;
  height: 630px;
  background-color: #ffffff;
  position: relative;
}
/* 24-05-23 수정 */
.login-box h2 {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}
.login-box table {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-box table tr input {
  width: 330px;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  padding-left: 12px;
  font-size: 14px;
}
.login-box table tr input::-moz-placeholder {
  color: #cacaca;
}
.login-box table tr input::placeholder {
  color: #cacaca;
}
.login-box table td.error {
  outline: 1px solid #ed1b23;
  box-sizing: border-box;
}
.login-box table td.error input,
.login-box table td.error button {
  border: none !important;
}

.lock-icon:hover {
  content: url(../img/lock2.png);
}

.lock-open-icon {
  content: url(../img/lock3.png);
}

.required {
  margin-bottom: 10px;
}

.serial-num {
  background-color: #f8f8f8;
}
.login-box table tr:nth-child(2) td {
  display: flex;
  flex-direction: row;
  margin: 10px 0 20px 0;
}
.login-box table tr:nth-child(2) td input {
  width: 298px;
  border-right: 0;
}
.lock-btn {
  width: 32px;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  border-left: 0;
  cursor: pointer;
}
.login_btn {
  width: 330px;
  height: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background-color: #ed1b23;
}
.login_btn:hover {
  background-color: #ff1f27;
}
.error-msg {
  display: none;
  color: #ed1b23;
  font-size: 14px;
  position: absolute;
  top: 488px;
}

.otp-info {
  font-size: 12px;
  line-height: 18px;
}
.login-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
  width: 500px;
  height: 630px;
  background-color: #23282d;
}
.login-title h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-title p {
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: normal;
}
