@charset "UTF-8";
body {
  background-image: url("../images/bg_1.jpg");
  background-size: cover;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-option__boxWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.checkbox div input, .checkbox div label {
  cursor: pointer;
}

.find_password a {
  text-decoration: underline;
}

.login-box {
  width: 500px;
  height: 520px;
  background: #fafafa;
  display: block;
  margin: auto;
  border-radius: 10px;
  padding: 40px 40px 20px 40px;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

h1 {
  font-size: 34px;
  font-weight: 600;
  color: #000000;
  margin: 30px 0 30px 0;
}

h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: #797979;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

.login-option__boxWrap button {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #cdcdcd;
  width: 100%;
  border-bottom: 3px solid #cdcdcd;
  padding-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.login-option__boxWrap button.active {
  border-bottom: 3px solid #192E63;
  color: #192E63;
}

.login-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 20px 0px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 40px;
  font-weight: 600;
  background: none;
}

label {
  font-size: 16px;
}

.login-textbox input {
  font-size: 16px;
  width: 100%;
  height: 60px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c7c7cc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.login-textbox input:focus {
  border: 1px solid #192E63;
  outline: none;
  background-color: #f2f6ff;
}

/* 버튼인 태그이고 class="btn_login" 인 경우 */
button.btn_login {
  width: 100%;
  color: #ffffff;
  padding: 20px 10px;
  background: #192E63;
  margin-top: 25px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

.etc_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}