@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700,900');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap');
body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
p,
select {
    font-family: 'Noto Sans KR', sans-serif;
}

body,
html {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#wrapper {
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}

.sub_mw,
.re {
    position: relative;
}

.gryBg {
    background: #f0f0f0;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
}

.mw {
    position: absolute;
    z-index: 100;
    display: inline-block;
    max-width: 950px;
    left: 50%;
    margin-left: -500px;
    top: 50%;
    margin-top: -351px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    height: 702px;
    padding: 20px 0;
}

.lo_title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 85px;
    font-style: normal;
    width: 390px;
    font-weight: normal;
    line-height: 95px;
    color: rgb(20, 20, 20)
}

.left {
    padding-left: 20px;
    transition: 0.2s;
    font-size: 15px;
    position: relative;
}

.right {
    z-index: 1000;
    text-align: right;
    position: absolute;
    height: 100%;
    width: 500px;
    right: 0;
    top: 0;
}

.img {
    position: absolute;
    right: 70px;
    top: 60px;
    display: inline-block;
    font-size: 0;
    width: 446px;
    height: 573px;
    background: url('../img/login_back.jpg') center center no-repeat;
    background-size: cover;
}
.deco {
    transition: 0.6s;
    opacity: 0.7;
    display: inline-block;
    border: 15px solid #fff;
    width: 386px;
    height: 553px;
    box-sizing: border-box;
    margin-top: 20px;
}

p {
    font-size: 15px;
    margin: 30px 0 70px;
    font-family: Noto Sans KR;
    color: #333;
}

form * {
    display: block;
    width: 330px;
}

label {
    width: 0;
    height: 0;
    font-size: 0;
}

input[type="text"] {
    font-weight: normal;
    border: 0 none;
    border-bottom: 1px solid #000;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    transition: 0.1s;
    margin-bottom: 10px;
}

input[type="text"]:hover {
    padding-left: 0;
    border-color: #cecece;
}

input[type="text"]:focus {
    outline: none;
    border-color: #000;
    padding-left: 0;
    font-weight: bold;
    color: #000;
}

input[type="button"] {
    font-weight: bold;
    margin-top: 50px;
    font-size: 16px;
    background: #fff;
    border-radius: 0;
    border: 1px solid #000;
    height: 55px;
    line-height: 53px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.2s;
}

input[type="button"]:hover {
    background: rgb(228, 224, 205);
}

 ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #a9a9a9;
    opacity: 1;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a9a9a9;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #a9a9a9;
}


/* animation */

.circle-out {
    z-index: 100;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: relative;
    padding: 5px;
    animation: grow 1.8s infinite;
}

.circle-in {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin: 0 auto;
}

@-webkit-keyframes grow {
    0%,
    100% {
        background: rgba(236, 210, 162, 0.2);
        height: 80px;
        width: 80px;
    }
    50% {
        background: rgba(228, 196, 155, 0.7);
        height: 30px;
        width: 30px;
    }
}


/* 미디어 쿼리 */

@media only screen and (max-width: 1024px) {
    body,
    html {}
    .mw {
        max-width: 100%;
        height: 100%;
        position: static;
        margin: 0;
        padding: 0;
    }
    .sub_mw {
        height: 100%;
    }
    .re {
        height: 100%;
    }
    .lo_title {
        width: 100%;
        font-size: 60px
    }
    form {
        margin: 0 auto;
    }
    form * {
        display: inline-block;
    }
    .left {
        transition: 0;
        z-index: 100;
        max-width: 100%;
        height: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 0 30px 60px;
    }
    .right .img {
        width: 100%;
        height: 100%;
        background-size: cover;
    }
    .deco {
        display: none;
    }
    .right {
        z-index: 1;
        width: 100%;
        height: 100%;
        right: 0;
    }
    .img {
        margin: 0;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-size: cover !important;
    }
    .pd {
        position: relative;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        background: #fff;
        padding: 30px 0 60px;
    }
    p {
        margin-bottom: 50px;
    }
    .md {
        position: absolute;
        top: 50%;
        margin-top: -273px;
        width: 100%;
    }
}

@media only screen and (max-width: 660px) {
    .lo_title {
        font-size: 47px
    }
}

@media only screen and (max-width: 500px) {
    .lo_title {
        line-height: 38px;
    }
    p {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 14px;
    }
    form * {
        width: 280px;
    }
    input[type="button"] {
        height: 50px;
        line-height: 48px;
        font-size: 14px;
        margin-top: 30px;
    }

    input[type="text"] {
        height: 45px;
        line-height: 45px;
    }

    label {
        display: none;
    }

    .md {
        margin-top: -210px;
    }

    .worshipImage_login {
        width: 320px;
    }

    .worshipImage_page {
        width: 310px;
    }
}

@media only screen and (max-width: 410px) {
    body,
    html {
        min-width: 320px;
        min-height: 568px;
        overflow: auto;
    }
    form * {
        width: 230px;
    }
    p {
        width: 230px;
        margin: 0 auto;
        margin-top: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .left {
        padding: 0 20px 50px;
    }

    .block {
        display: block;
    }

    .worshipImage_login {
        width: 320px;
    }

    .worshipImage_page {
        width: 310px;
    }
}