@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-900';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

body, html {
  height: 100%; 
  margin: 0; 
  padding:0;
  background-color:#FFF;
  color:#000;
  font-family: "Pretendard-Regular"; 
  font-weight: 400;
}

.title1 {
    font-size: 60px;
    font-weight: bold;
    text-align: left;
}

.title2 {
    font-size: 40px;
    font-weight: bold;
    text-align: right;
}

.login_tr_1 {
    vertical-align: bottom;
}
.login_tr_2 {
    vertical-align: top;
}
.login_tr_3 {
    height: 100px;  
}

.container {
  height: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.loginBox {
  width: 80%; 
  height: 80%; 
  background-color: white; 
  box-shadow: 0px 0px 43px -2px rgba(135,130,135,1); 
  border-radius: 8px; 
  padding: 15px;
}
.userImage {
  margin-right: 30px;
  overflow: hidden; 
  height: 100%;
  background: url( "../../image/login/login.png" ) no-repeat;
  background-size: cover;
  background-position: center;
}
img {
  width: 100%;
}
.input-wrapper {
  position: relative;
}
.error-userid, .error-userpass {
  position: absolute; 
  top: 5px; 
  padding: 5px 10px; 
  right: 0; 
  color: white; 
  background-color: #66e8dc; 
  border-radius: 10px;
}
.triangle {
  width: 0; 
  height: 0; 
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent; 
  border-top: 10px solid #66e8dc; 
  position: absolute; 
  right: 18px; 
  bottom: -8px;
}
input {
  display: block; 
  width: 300px; 
  padding: 15px 10px; 
  border-radius: 8px; 
  border: 1px solid #ececec; 
  margin: 10px 0;
}
input[type="button"] {
  width: 100%; 
  margin-top: 35px; 
  background-color: #002060; 
  color: white; 
  font-family: 'Pretendard-Regular';
  font-weight: bold;
  font-size: 18px
}
.warning {
  border-color: red
}
.confirmation {
  width: 200px; 
  position: absolute; 
  top: 0; 
  border-radius: 50%; 
  overflow: hidden; 
  height: 200px; 
  left: 50%; 
  margin-left: -100px; 
  top: 50%; 
  margin-top: -100px;     					
  box-shadow: 10px 10px 10px; 
  z-index: 10
}
.overlay {
  background: rgba(14, 14, 14, 0.57); 
  height: 100%; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 9;}
.showOk {
  animation: showOk 1s ease 1 normal; 
  width: 200px; 
  height: 200px;
}
@keyframes showOk {
  from {
    transform: scale(0);
    opacity: 0
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}