.secwin{
    position: fixed;
    width:100%;
    left:0px;
    height:calc(100vh);
    top:200px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:all 0.5s ease;
    background-image:url(../../images/bg-register-new.jpg);
    background-size: cover;
    background-position-x: 0vw;
}
.secwinact{
    left:0px;
    top:105px;
    opacity: 1;
    visibility: visible;
    transition:all 0.5s ease;
    background-color: var(--bg-color);
    background-size: cover;
}

.secwin .sec_header{
	color:var(--sec_bg_title);
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    margin-top:30px;
}
.back_symbol{
    color:#959595;
    font-size:30px;
    font-weight:bold;    
    right: 10% !important;
    position: fixed;
    cursor: pointer;
}
.sec_title{
    font-size:20px;
    color:var(--text-main);
    text-align: center;
    margin-bottom: 20px;
}

.sec_content{
    position: relative;
    width:80%;
    margin:0 auto;
    max-width: 1200px;
}

.pc_partform{
    position:absolute;
    right:0px;
    margin-top: 60px;
}

.sec_form{
    background-color: rgba(225, 225, 225, 0.5);
    width:480px;
    border-radius:9px;
    padding:5%;
    margin-top:10px;
    margin:0 auto;
}


.sec_form_box input{
    width:calc( 100% - 30px);
    line-height:1.5;
    font-size:0.875rem;
    padding:15px;
    border-radius:9px;
    background-color: #F8F9FB;
    color:black;
    border:1px solid #F8F9FB;
}

.sec_input{
    margin-top:1rem;
}

.sec_line{
    border:none;
    border-top:1px solid #ccc;
    width:40%;
    margin:1rem auto;

}
.sec_form_button{
    width:90%;
    margin-left:5%;
    display: flex;
    justify-content: center;
}

.sec_btn{
    width:40%;
    height: 39px;
    background-image: var(--m_topbtn);
    color: #fff;
    text-shadow: none;
    cursor: pointer;
    font-size: 14px;
    border: 0px;
}
.f_pass{
    text-align: center;
    margin-top:10px;
}
.sec_content a{
    text-decoration: underline;
    color:var(--main);
    font-size:13px;
}
.sec_loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(225, 225, 225, 0.5);
    display: none;
    z-index: 2;
}

.sec_loading img {
    position: absolute;
    top: 50%;
    left: calc(50% - 15px);
}

/*LANGUAGE*/
.sec_lang{
    line-height: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec_lang_row{
    color: #404966;
    display: flex;
    font-size: 11px;
    align-items: center;
    gap: 10px;
}
.sec_lang_row img{
    height:15px;
}

@media only screen and (max-width: 1025px) {
.secwin{
    background-color: var(--sec_bg);
    background-image: none;
    position: fixed;
    width:100vw;
    left:0px;
    height:calc(100vh);
    top:200px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition:all 0.5s ease;
}
.secwinact{
    background-image: none;
    left:0px;
    top:50px;
    opacity: 1;
    visibility: visible;
    transition:all 0.5s ease;
}
.secwin .sec_header{
	background-color:var(--sec_bg);
	color:var(--sec_bg_title);
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    margin-top:30px;
}
.sec_form{
    background-color: #f1f1f1;
    width:90%;
    margin-left:5%;
    border-radius:9px;
    padding:5%;
    margin-top:10px;
}
.sec_content{
    position: relative;
    width:100%;
    margin:0;
    max-width: none;
}
.sec_line{
    border:none;
    border-top:1px solid #555;
    width:90%;
    margin:1rem 5%;
}
.pc_partform{
    position:relative;
    right:0px;
    margin-top: 0px;
}
.back_symbol{
    color:#959595;
    font-size:30px;
    font-weight:bold;    
    right: 5% !important;
    position: fixed;
}

}