/* @charset "EUC-KR"; */ 
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border-collapse: collapse;
}

body {
  font-family: "Nanum Gothic", sans-serif;
  height: 100vh;
}

.text-label{
	font-size: 14px;
}

.checkBox-area{
	display: flex;
	padding-top: 5px;
}

.checkBox-area > input{
	width: 16px;		
	height: 16px;
	cursor: pointer;		
}

.checkBox-area > label{
	font-size: 13px;
	margin-left: 5px;
	line-height: 17px;
	cursor: pointer;
}


label,
.auth-form {
  display: inline-block;
}

.auth {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  background-color: #f6f7f9;
}

.auth-header {
  background-color: #004d81;
  width: 100%;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 161.5px;
  margin-bottom: -3rem;
  text-align: center;
  color: #fff;
}

.auth-form {
  z-index: 1;
  width: 100%;
  background-color: #fff;
  padding: 48px 32px 16px;
  max-width: 420px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(20, 20, 31, 0.05),
    0 1px 3px 0 rgba(20, 20, 31, 0.15);
  font-size: 11px;
  font-weight: bolder;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #c6c9d5;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #363642;
  background-color: #ffffff;
  border-color: #346cb0;
  outline: 0;
  box-shadow: 0 0 0 1px #346cb0;
}

.input-group-alt {
  width: 356px;
  height: 36px;
}

.btn {
  height: 46px;
  padding: 8px 16px;
  border-radius: 5px;
  color: #fff;
  border: 1px solid transparent;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #fff;
}

.close {
  border: none;
  cursor: pointer;
  background-color: #ccc;
  display: inline-block;
  color: #333;
  padding: 5px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
}

.close {
  color: #888c9b;
  background-color: transparent;
  border: none;
}

.close:hover {
  color: #333;
}

.input-group-alt {
  position: relative;
}

.error {
  color: #ea6759;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: default;
}

.mt-3 {
  margin-top: 1rem;
}

.auth-footer {
  padding: 1rem;
  color: #888c9b;
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .auth-footer {
    max-width: 420px;
  }
}

/* #user_pw-error{
	display: none !important;
}

#user_id-error{
	display: none !important;
} */


