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

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

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

.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;
}

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: white;
}

#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: #009944;
    border: #009944;
    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: #00682f;
    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";
    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;
}
