input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-bottom: 1px solid #0066cc;
}

input:invalid {
  box-shadow: none;
}

body {
    background: #f2f3f7 !important;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 14px;
}

#login_pre {
    background-color: #ffffff;
    max-width: 430px;
    margin: 0 auto;
    margin-top: 13rem;
    padding: 64px 18px 66px 18px;
    border: 1px solid #e0e0e2;
    border-radius: 6px;
    box-shadow: 8px 9px 7px -7px #e1e1e1;
}

#login_pre .logo {
    text-align: center;
    padding-bottom: 65px;
}

input:-webkit-autofill {
  background-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  border: none;
}

input:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

input,
input:focus,
input:-webkit-autofill {
  font-size: 18px !important;
}

#login_pre .id {
    width: 100%;
}

#login_pre .id p {
    color: #8b8b8b;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
}

#login_pre .id input {
    width: 100%;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background: #ffffff !important;
    border-bottom: 1px solid #d4d4d4;
    font-size: 18px;
    color: #4d4d4d;
    padding: 8px 0px 10px 0px;
    margin-bottom: 20px;
}

#login_pre .id input:focus{
    border-bottom: 2px solid #183883;
    outline: none;
}

#login_pre .pw {
    width: 100%;
}

#login_pre .pw p {
    color: #8b8b8b;
    font-weight: 500;
    font-size: 13px;
    margin: 0;
}

#login_pre .pw input {
    width: 100%;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background: #ffffff !important;
    border-bottom: 1px solid #d4d4d4;
    font-size: 18px;
    color: #4d4d4d;
    padding: 8px 0px 10px 0px;
    margin-bottom: 10px;
}

#login_pre .pw input:focus{
    border-bottom: 2px solid #183883;
    outline: none;
}

#login_pre button {
    background: #183883;
    color: #ffffff;
    width: 100%;
    border-radius: 6px;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 12px;
    margin-top: 28px;
    cursor: pointer;
}

#login_pre .idsave {
    display: flex;
    align-items: center;
}

#login_pre .idsave label {
    font-size: 13px;
}

/* Ã¼Å©¹Ú½º */
#saveFlag {
  display: none;
}

.idsave label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.idsave label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  background-color: #fff; 
  border-radius: 2px;
  box-sizing: border-box;
  transition: background-color 0.2s;
}

#saveFlag:checked + label::before {
  background-color: #183883; 
  border-color: #183883;
}

#saveFlag:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0px 1px 1px 0;
    transform: rotate(45deg);
}