/* 로그인 페이지 */
login_input_div_div>input {
    border: none;
}

#connection_img {
    background: url(../images/hub/commenting_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.login-container {
    height: 48.5rem;
    padding: 5.65rem;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(40, 40, 80);
    filter: drop-shadow(25.456px 25.456px 12px rgba(0,0,0,0.15));
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.login-header .logo img{
    width: 29.6rem;
    height: 3.7rem;

}

.login-header .title {
    font-size: 2rem;
    letter-spacing: 0px;
    line-height: 3rem;
    color: #00ffff;
    font-weight: 500;
    text-align: center;
}

#formlogin {
    flex: 1;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
}



.login-input-container {
    position: relative;
}

.login-input-container label{
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: bold;
}



.login_input {
    width: 100%;
    height: 3rem;
    padding: 0 4rem 1rem 0.5rem;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid white;
    background: none;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.login_input_icon {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 1.6rem;
    right: 0.5rem;
}
.login_input_icon img{
    width: 100%;
    height: 100%;
}

.login_input:focus {
    outline: none;
    border-bottom: 1px solid #00ffff;
    transition: 1s;
    transition-duration: 500ms;
    transition-timing-function: ease;
    transition-property: all;   
}

.login-input-container .title{
    color: gray;
    margin-bottom: 0.5rem;
}

.login-input-container  label:focus-within .title{
    color: white;
    font-weight: bolder;
}
.login_input_user_info {
    margin: 41px 0;
}

.login_input_user_info .login_input_container {
    position: relative;
}

.login_input_user_info .login_input_icon {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0%;
    bottom: 10.5px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.login-container .submit_btn_container {
    width: 100%;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container .submit_btn {
    width: 280px;
    height: 100%;

    /* background: linear-gradient(90deg, rgba(122,50,193,1) 0%,rgba(64,140,197,1) 100%); */
    background: linear-gradient(90deg, rgba(122, 50, 193, 1) 0%, rgba(64, 140, 197, 1) 50%, rgba(122, 50, 193, 1) 100%);
    background-size: 200% 100%;
    border-radius: 30px;

    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.33em;
    border: none;
}

.login-container .submit_btn:hover {
    cursor: pointer;
    transform: scale(1.025);
    transition-duration: 0.5s;
    animation: btn_focus 1s ease;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.error_msg{
    text-align: center;
    color: red;
    white-space: pre-line;

    padding: 10px 0;
    
    font-weight: bold;
}

.footer-container {
    position: fixed;
    bottom: 0;
}

@media screen and (max-width:1240px) {

    .contact-info {
        gap: 1rem;
    }
    .info {
        padding: 0;
        gap: 0.5rem;
    }
    .li-circle:before {
        display: none;
    }
    .footer-container{
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contact {
        gap: 2rem;
    }
}


/* 모바일 반응형 */
@media only screen and (max-width: 1200px) {
    .footer-right{
        display:none;
    }

    .footer-container{
        justify-content: center;
    }
    .li-circle {
        padding-left: 0;
    }
}

@media only screen and (max-width: 800px) {
    .footer-right{
        display:none;
    }
    

    .footer-container{
        justify-content: center;
        gap: 2rem;
    }
    .footer-contact {
        gap: 2rem;
    }
    .info {
        flex-direction: column;
    }
}