.Login {
    position: flex; /* 뷰포트에 고정 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(192, 192, 192, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
 
.Body {
    display: flex;
    justify-content: center;
    align-items: center;
    width : 700px;
    height : 500px;
    margin-bottom: 100px;
    text-align: center;
    background-color: #fff;
    border:2px solid #000;

    box-shadow: 0 10px 10px rgba(0,0,0,.7);
    border-collapse: collapse;
    border-radius: 5px;
}

.Box {
    display: flex;
    width : 100%;
    height : 100%;
    justify-content: center;
    align-items: center;
    padding:50px 0 50px 0;
    background-color: rgba(255, 255, 255,1);
}

.Left {
    display: flex;
    width : 350px;
    height : 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 2px solid #999;
    font-size: 30px;
}

.Right {
    display: flex;
    width : 350px;
    height : 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.BtnDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 100%;
    font-size: 12px;
    margin-top:10px;
}
.Btn_OneButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 250px;
    min-height: 30px;
    height : 30px;
    padding:0;
    margin-top:10px;
    font-size:12px;
    border-collapse: collapse;
    border-radius: 5px;
}

.BtnDisable{
    border:1px solid #aaa;
    background-color: rgba(192,192,192,.7);
    box-shadow: 0 0px 0px rgba(0,0,0,.5);
    color:#999;
}

.BtnEnable{
    border:1px solid #000;
    background-color: rgba(230,230,230,.9);
    box-shadow: 0 2px 2px rgba(0,0,0,.5);
    color:#000;
}

.Btn_TowButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 120px;
    height : 30px;
    padding:0;
    margin-top:10px;
    margin-left:10px;
    font-size:12px;
    border-collapse: collapse;
    border-radius: 5px;
}

.Btn_Select{

}
.Btn_Select:hover {
  background-color: #000;
  color:#fff;
  cursor: pointer;
}








.Form{
    display:flex;
    justify-content: center;
    align-items: flex-start;
    width : 100%;
    height : 200px;
}

.Form_Body{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width : 100%;
    height : 200px;
}

.Form_Split{
    height:20px;
    margin-top:20px;
}

.Form_Input{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 250px;
    height : 30px;
    padding:0;
    margin-top:10px;
    border-radius: 5px;
    border:1px solid #000;
    background-color: rgba(255,255,255,.7);
    font-size:12px;
}

.Form_Input input{
    border:0px solid #f00;
    background-color: rgba(255,255,255,0);
    height : 28px;
    margin-left:10px;
    width:135px;
}

.Form_Input select{
    border:0px solid #f00;
    background-color: rgba(255,255,255,0);
    height : 28px;
    width : 134px;
    margin-left:10px;
}


.Form_Text{
    display: flex;
    justify-content: right;
    align-items: center;
    width : 120px;
    height : 30px;
}

.Form_Pass_Check{
    display: flex;
    justify-content: right;
    align-items: center;
    font-size : 11px;
    width:140px;
    min-height:15px;
    margin-top:3px;
}

.Form_Pass_Check_OK{
    color:#092;
}
.Form_Pass_Check_NG{
    color:#f00;
}

.Form_Join_Message{
    display: flex;
    justify-content: left;
    align-items: center;
    font-size : 12px;
    width:220px;
    min-height:20px;
    margin-top:10px;
    text-align: left;
}


.Form_Option{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 100%;
    font-size: 12px;
    margin-top:10px;
}

.Form_OptionSub{
    display: flex;
    justify-content: center;
    align-items: center;
    width : 100px;
    height : 30px;
    cursor: pointer;
}

.Form_OptionSub a{
    color:#000;
}

.Form_OptionSub a:hover{
    color:#f00;
}


.Reset{
    display:none;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-direction: column;
    width : 100%;
    height : 200px;
}



.Reset_Text
{
    width : 100%;
    font-size:16px;
}


.Join{
    display:none;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-direction: column;
    width : 100%;
    height : 200px;
}

@media screen and (max-width: 700px){
    .Body{
        width : 350px;
    }
    .Left {
        display:none;
    }
}
