/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}

body {
  background: #f5f9fc;
  height: 100vh;
}

/* Layout */
.login-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Card */
.login-card {
  width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 36px 32px 32px;
  margin:50px auto;
}

/* Header */
.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-icon {
  height: 130px;
  margin-bottom: 12px;
  background:url(../images/common/login_icon.svg)no-repeat center;
  background-size:contain;
}

.login-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* Form */
.login-form input {
  width: 100%;
  height: 44px;
  border: 1px solid #dcdfe3;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.login-form .inSelect select{
  width: 100%;
  height: 44px;
  border: 1px solid #dcdfe3;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.login-form input::placeholder {
  color: #b0b4bb;
}

.login-form input:focus {
  outline: none;
  border-color: #5b8bd9;
}

/* Button */
.btn-login {
  width: 100%;
  height: 46px;
  background: #5b8bd9;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.btn-login:hover {
  background: #4a7fd0;
}

/* util area */
.login-util {
  margin-top: 14px;
  text-align: center;
}

.btn-find-id {
  font-size: 13px;
  color: #7a7f87;
  text-decoration: none;
}

.btn-find-id:hover {
  color: #5b8bd9;
  text-decoration: underline;
}