body,
html {
    height: 100%;
    margin: 0;
}

body::-webkit-scrollbar {
    display: none;
}

input,
button,
a {
    font-family: "Noto Sans KR",sans-serif;
}

.background {
    width: 100%;
    height: 100%;
}

.outcontainer {
    display: grid;
    grid-template-rows: auto;
    grid-gap: auto;
}

.incontainer {
    display: grid;
    grid-template-rows: auto;
    grid-gap: auto;
}

.idpwcontainer {
    display: grid;
    grid-gap: auto;
    grid-template-columns: 46px 344px;
    grid-template-rows: auto;
    align-items: end;
    margin-left: 2%;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 60px 64px;
    position: absolute;
    width: 400px;
    height: 460px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 20px 40px rgba(17, 17, 17, 0.2);
    border-radius: 12px;
    top:calc(50% - (596px/2));
    right: 1em;
    /* left: calc(50% - 260px); */
}
@media (max-device-width: 480px) {
    .login { left: calc(50% - 260px); }
}



a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #9c9a99;
    cursor: pointer;
}

input:focus {
    outline: none;
}

input {
    border-radius: 0.75rem;
    border: 2px;
    width: 96%;
    height: 10%;
    min-height: 35px;
    max-height: 46px;
    max-width: 380px;
    align-self: center;
    color: black;
    text-align: center;
    background-color: #f7f8f9;
    margin-top: 3%;
}

input::placeholder {
    color: #888888;
}

#logid {
    width: 94%;
    position: relative;
    height: 46px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 0 12px 12px 0;
    text-align: left;
    margin-top: 10%;
    text-indent: 10px;
    font-family: Nanum Gothic;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
}

.log_input {
    width: 94%;
    position: relative;
    height: 46px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 0 12px 12px 0;
    text-align: left;
    text-indent: 10px;
    font-family: Nanum Gothic;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
}

#logidimg {
    position: relative;
    height: 48px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 12px 0 0 12px;
    background-image: url("/images/user.png");
    background-position: 15px center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

#logpw {
    width: 94%;
    position: relative;
    height: 46px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 0 12px 12px 0;
    text-align: left;
    text-indent: 10px;
    font-family: Nanum Gothic;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
}

#logpwimg {
    position: relative;
    height: 48px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 12px 0 0 12px;
    background-image: url("/images/pw.png");
    background-position: 15px center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#logemailimg {
    position: relative;
    height: 48px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 12px 0 0 12px;
    background-image: url("/images/email.png");
    background-position: 15px center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#lognameimg {
    position: relative;
    height: 48px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 12px 0 0 12px;
    background-image: url("/images/name.png");
    background-position: 15px center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.loginBtn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-self: center;
    width: 96%;
    height: 100%;
    max-width: 380px;
    max-height: 46px;

    margin: 0;
    padding: 0.3rem 1rem;

    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;

    background: #7428cb;
    border: #7428cb;
    border-radius: 12px;

    margin-top: 5%;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    cursor: pointer;

    transition: 0.5s;
    color: #ffffff;
}

.loginBtn:hover {
    background: #5a1dae;
    outline: 0;
}

.loginBtn_sub {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-self: center;
    width: 96%;
    height: 100%;
    max-width: 380px;
    max-height: 46px;

    margin: 0;
    padding: 0.3rem 1rem;

    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;

    background: #743dff;
    border: #743dff;
    border-radius: 12px;

    margin-top: 5%;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    cursor: pointer;

    transition: 0.5s;
    color: #ffffff;
}

.loginBtn_sub:hover {
    background: #4800ff;
    outline: 0;
}

.infoFind {
    position: relative;
    top: 30%;
}

.infoFind > a {
    font-size: 0.75rem;
}

.infoFind_sub {
    position: absolute;
    bottom: 5%;
    
}

.infoFind_sub > a {
    font-size: 0.75rem;
}

.text_label{
    margin-top: 1%;
    margin-left: 3%;
    text-align: left;
    font-weight: bold;
    color: #797e86;
    letter-spacing: -0.03em;
    /*margin-bottom: 0.5rem*/
   }

.Welcome {
    /* Welcome! */

    position: static;
    width: 100%;
    height: 40px;
    left: 0px;
    top: 0px;

    /* H1/Bold */

    font-family: Nanum Gothic;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    /* identical to box height, or 125% */

    text-align: center;
    letter-spacing: -0.03em;

    /* Grayscale/Black */

    color: #06060a;

    /* Inside Auto Layout */
    margin: 4px 0px;
}

.WelcomeInfo {
    /* Enter your login to continue… */

    position: static;
    width: 100%;
    height: 27px;
    left: 0px;
    top: 44px;

    /* Body/Large/Regular */

    font-family: "Noto Sans KR",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    /* identical to box height */

    text-align: center;
    letter-spacing: -0.03em;

    /* Grayscale/Gray */

    color: #9ea4ae;

    /* Inside Auto Layout */
    margin: 4px 0px;
}

input:focus::placeholder {
    color: transparent;
}
.text_err {
    color: #cb030a;
    text-align: left;
    font-size: 0.5em;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 3%;
    font-family: "Noto Sans KR",sans-serif;
    display: none;
}
.id_result_box {
    margin-top: 5px;
}
.span_id {
    font-weight: bold;
    font-size: large;
}
.span_date {
    font-size: small;
}
input.secure-font {
    -webkit-text-security: disc;
}
img#secureeye {
    cursor: pointer;
    width: 20px;
    position: relative;
    bottom: 125%;
    left: 720%;
}
.asmAlarm {
    height: 62px;
}
.asmAlarm.sizeLong > .contentsArea {
    width: 24rem;
}

@media (max-width: 700px) {
    #setLanguage {
        display: none;
    }
    /* .loginContainer {
        grid-template-columns : 100% 0 !important;
    } */
}
@media (max-width: calc(520px + 1em)) {
    .login {
        left: 0;
    }
}
@media (max-height: 700px) {
    #setLanguage {
        display: none;
    }
}
#setLanguage {
    position: absolute;
    top: 1em;
    right: 1em;
}
#setLanguage > select {
    background: #ffffff61;
    font-weight: bold;
	border-radius: 0.3rem;
	padding: 0.5em 0.8em 0.5em 0.5em;
	border: 0.5px #7428cb solid;
}
#setLanguage > select:after {
    margin-right: 0.5em;
}
#setLanguage > select::-ms-expand { 
	display: none;
}
.loginContainer {
    width: 100%;
    height: 100%;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    grid-template-columns: 100% 0%;
    grid-template-areas: "loginImage emptyArea";
}
.loginContainer.jp {
    grid-template-columns : 100% 0 !important;
}
.loginContainer .loginImage {
    width: 100%;
    height: 100%;
    grid-area: loginImage;
    background-image: url(/images/Login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.loginContainer .emptyArea {
    width: 100%;
    height: 100%;
    grid-area: emptyArea;
}
input#otpcode {
    width: 94%;
    position: relative;
    height: 46px;
    left: 0px;
    top: calc(50% - 46px / 2);
    background: #f7f8f9;
    border-radius: 0 12px 12px 0;
    text-align: left;
    text-indent: 10px;
    font-family: Nanum Gothic;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: -0.03em;
}