@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  강혜연
Create date : 2022. 7. 05.
-------------------------------------------------*/

.login_wrap {
    width: 100%;
    height: 100vh;
    background: url(../img/login_bg.png) no-repeat center;
    background-size: cover;
    background-color: #053B5B;
    display: flex;
}
.login_wrap > div {
    width: 340px;
    margin: auto;
}
.login_top {
    width: 100%;
    background: rgba(111, 203, 251, .2);
    border-radius: 20px 20px 0 0;
    padding: 15px 30px 40px;
    text-align: right;
}
.login_top > p {
    color: var(--bs-white);
    font-size: 0.8rem;
}
.login_top > h3 {
    display: block;
    width: 164px;
    height: 91px;
    margin: auto;
    background: url(../img/login_logo.png) no-repeat center;
    background-size: cover;
    margin-top: 20px;
}

.login_body {
    background: var(--bs-white);
    padding: 30px 50px;
    border-radius: 0 0 20px 20px;
}
.login_body ul {
    position: relative;
}
.login_body ul li {
    width: 100%;
    height: 40px;
    border-radius: 5em;
    background: #EFF6FF;
    margin-bottom: 10px;
}
.login_body ul li span {
    display: block;
    width: 10px;
    height: 11px;
    background-size: cover !important;
    margin: auto 0;
    margin-left: 47px;
}
.login_body ul li span.login_name {
    background: url(../img/login_name.png) no-repeat center;
}
.login_body ul li span.login_pw {
    background: url(../img/login_pw.png) no-repeat center;
}
.login_body ul li input {
    padding: 0 37px;
    padding-right: 20px;
    box-sizing: border-box;
}
.login_body ul li input::placeholder {
    color: #88ABD6;
}
.login_body ul li button {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5em;
    background: #181818;
    color: #fff;
    margin-top: 20px;
}
.login_body ul li button:hover {
    color: #88ABD6;
    background: var(--bs-primary);
}
.login_body ul:before {
    content: 'Or';
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 23px;
    background: var(--bs-white);
    position: absolute;
    top: -36px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}
.login_body ul:after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--bs-dark);
    position: absolute;
    top: -28px;
    left: 0;
}
.login_body .regist_btn {
    display: block;
    margin-bottom: 58px;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 5em;
    background: #181818;
    color: #fff;
    box-sizing: border-box;
}
.login_body .regist_btn:hover {
    color: #88ABD6;
    background: var(--bs-primary);
}
.login_body .regist_btn i {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/whalespace_logo.png) no-repeat center;
    background-size: cover;
    vertical-align: -3px;
    margin-right: 8px;
}
.copyright {
    width: 340px;
    font-size: 10px;
    color: #BAD2F0;
    text-align: center;
    position: absolute;
    bottom: 20%;
}

#agree_modal .sub_title {
    padding-top: 0;

}
#agree_modal .modal-body > p {
    color: var(--bs-gray);
}
#agree_modal canvas {
    border: 1px solid #707070;
    position: relative;
    margin-top: 40px;
}