/*모바일*/
@import "login_mobile.css";
/*태블릿*/
@import "login_tablet.css";
/*PC*/
@import "login_desktop.css";
/*대형 PC*/
@import "login_desktop_XL.css";

.wrapper{
    width: 100vw;
    height: 100%;
    background-image: url(/img/login/login_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper{
    display: grid;
}
.wrapper .login_content{
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.wrapper .login_content h3{
    display: block;
    margin: 0 0 36px 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.login_form{
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.button-login{
    display: block;
    width: 100%;
    height: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    border: solid 1px #662d91;
    /*background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);*/
    /*background: -webkit-linear-gradient(top, #cb60b3 0%,#ad1283 50%,#de47ac 100%);*/
    background: -moz-linear-gradient(top, #FFA406 0%, #EB9705 100%);
    background: -webkit-linear-gradient(top, #FFA406 0%, #EB9705 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FCB53B', endColorstr='#EB9705',GradientType=0 );
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button-login:hover{
    /*background: -moz-linear-gradient(top, #fb83fa 0%, #e93cec 100%);*/
    /*background: -webkit-linear-gradient(top, #fb83fa 0%,#e93cec 100%);*/
    /*background: linear-gradient(to bottom, #fb83fa 0%,#e93cec 100%);*/
    background: -moz-linear-gradient(top, #FCB53B 0%, #FDAA19 100%);
    background: -webkit-linear-gradient(top, #FCB53B 0%,#FDAA19 100%);
    background: linear-gradient(to bottom, #FCB53B 0%,#FDAA19 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FCB53B', endColorstr='#FDAA19',GradientType=0 );
}
.button-join{
    display: block;
    width: 100%;
    height: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    border: solid 1px #000;
    /*background: -moz-linear-gradient(top, #444 0%, #111 100%);*/
    /*background: -webkit-linear-gradient(top, #444 0%, #111 100%);*/
    /*background: linear-gradient(to bottom, #444 0%, #111 100%);*/
    background: -moz-linear-gradient(top, #79A1F2 0%, #577DC7 100%);
    background: -webkit-linear-gradient(top, #79A1F2 0%, #577DC7 100%);
    background: linear-gradient(to bottom, #79A1F2 0%, #577DC7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#79A1F2', endColorstr='#577DC7',GradientType=0 );
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.button-join:hover{
    background: -moz-linear-gradient(top, #99B5EC 0%, #7794CD 100%);
    background: -webkit-linear-gradient(top, #99B5EC 0%, #7794CD 100%);
    background: linear-gradient(to bottom, #99B5EC 0%, #7794CD 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99B5EC', endColorstr='#7794CD',GradientType=0 );
}


/*채팅*/
.chat_area .btn_chat{
    background: url("/img/ico/ico_chat.png") no-repeat;
    width: 100px;
    height: 130px;
    border: none;
    float: right;

    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 100 !important;
}
.chat_area .btn_chat:focus{
    outline: none;
}
.chat_area .chat_window{
    display: none;
    background-color: #ffffff;
    position: fixed;
    bottom: 138px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 999;
}
.chat_area .chat_window .window_header{
    /*border-bottom: solid 1px #dddddd;*/
    background-color: #9147FF;
    text-align: right;
    height: 9%;
}
.chat_area .chat_window .window_close{
    cursor: pointer;
    font-size: 30px;
    margin-right: 5px;
    color: #ffffff;
}
/*채팅 내용*/
.chat_area .chat_window #ul_chatting_list{
    overflow-y: auto;
    height: 82%;
    /*background-color: #92CA81;*/
    background-color: #111111;
    display: flex;
    flex-direction: column;
}

.chat_area .chat_window #ul_chatting_list .li_chat{
    max-width: 60%;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    margin: 6px;
    padding: 10px 5px;
    border-radius: 10px;
}
.chat_area .chat_window #ul_chatting_list .li_chat .time{
    font-size: 11px;
    color: #878787;
    margin-top: 3px;
}

.chat_area .chat_window #ul_chatting_list .company{
    background-color: #F7F7F7;
    float: left;
    text-align: left;
    margin-right: auto;
    position: relative;
}
.chat_area .chat_window #ul_chatting_list .company:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: #F7F7F7;
    transform: translateY(100%);
}
.chat_area .chat_window #ul_chatting_list .user{
    background-color: #FFF446;
    float: right;
    text-align: right;
    margin-left: auto;
    position: relative;
}
.chat_area .chat_window #ul_chatting_list .user:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 15px;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-top-color: #FFF446;
    transform: translateY(100%);
}

.chat_area .chat_window #ul_chatting_list .li_chat .message{
    word-break: keep-all;
    overflow-wrap: break-word;
}
.chat_area .chat_window #ul_chatting_list .li_chat .footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.chat_area .chat_window #ul_chatting_list .li_chat .footer a{
    font-size: 13px;
}


/*보내는 메세지*/
.chat_area .chat_window .send_message_area{
    display: flex;
    align-items: center;
    background-color: #242424;
    border: 1px solid #9147FF;
    bottom: 0;
    position: sticky;
    width: 100%;
    height: 9%;
}

.chat_area .chat_window .send_message_area .input_imageButton{
    background: url("/img/ico/ico-send.png") no-repeat;
    width: 30px;
    height: 30px;
    border:none
}
.chat_area .chat_window .send_message_area #input_sendMessage_login{
    margin: 0 5px;
    border: none;
    padding: 5px;
    height: 100%;
    font-size: 15px;
    background-color: #242424;
    color: #ffffff;
}
.chat_area .chat_window .send_message_area #input_sendMessage_login:focus{
    outline: none !important;
}