#wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.wrap-layout{
    display: flex;
    width: 80%;
    height: 65%;
    border: 1px solid rgb(207, 199, 199);
    /* overflow: hidden; */
}
.login-img{
    position: relative;
    width: 65%;
    height: 100%;
    /* overflow: hidden; */
}
.login-img>img{
    width: 100%;
    height: 100%;
}

.login-img>img:nth-child(1){
    position: relative;
    z-index: 100;
}

.login-img>img:nth-child(2){
    position: absolute;
    transform: rotate(2deg);
    width: 101%;
    height: 108%;
    right: 10px;
    bottom: -20px;
    z-index: -100;
}

.login-layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: 100%;
    min-width: 450px;
}
form{
    box-sizing: border-box;
    padding: 0 15px 0 15px;
    width: 100%;
}
.auth-form-body {
    box-sizing: border-box;
    width: 100%;
    padding: 36px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #F8F8F8;
    border: none;
}

.auth-form-body label {
    font-family: 'Noto Sans KR';
    font-weight: normal;
    color: #464646;
}

.login_error {
    color: red;
    font-weight: bold;
}

.btn-login {
    color: #eaebed;
    background: #333f50 !important;
    font-family: 'Noto Sans KR';
    font-weight: normal;
    width: 100%;
    border-radius: 4px;
}

.btn-login:hover {
    color: white !important;
    border-color: #333f50 !important;
}

.btn-login:active {
    border: thin silver solid;
    margin: 0px;
}

/* .btn-signup {
    color: #5a5a5a;
    background: #fff !important;
    border: thin #e1e1e1 solid;
    width: 100%;
    border-radius: 4px;
    font-family: 'Noto Sans KR';
    font-weight: normal;
} */

.ras-login-logo {
    color: #333333;
    font-size: 2rem;
    font-family: 'Noto Sans KR';
    font-weight: normal;
    text-align: center;
}

.ras-login-logo>img {
    margin-bottom: 16px;
}

.login-header {
    color: #333333;
    margin-top: 0;
    text-align: center;
}

.login-header>h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Noto Sans KR';
    font-weight: 500 !important;

}

.spacer {
    margin-bottom: 32px;
}

.login-icon {
    position: relative;
    border: 5px solid white;
    top: 25px;
    /* left: calc(50% - 37px); */
    border-radius: 50%;
}

p.copyright {
    position: absolute;
    width: 100%;
    color: #969696;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    bottom: 0;
}

@media all and (max-width:1200px) {
    .login-img{
        background-color: aqua;
        display: none;
    }
    .wrap-layout{
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
    }
}
