
section.login{
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 12px;
    height: 100%;
    max-height: 1080px;
}

.thumbnail{
    background-image: url(../../image/login/login-image.png);
    background-size: 900px 1403px;
    background-position: -20px 20%;
    border-radius: 30px;
    padding: 165px 5vw;
    color: var(--white);
    font-size: 40px;
    line-height: 140%;
}
.form_box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_box>div{
    padding: 12px;
    
}
.logo{
    display: block;
    width: 98px;
    height: 23px;
    margin-bottom: 46px;
}
.logo>img{
    width: 100%;
}
.title{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.input-box{
    padding: 16px 24px;
    border: 1px solid #B1B8C750;
    border-radius: 10px;
    font-size: 16px;
}
.input-box.focus{
    border: 1px solid var(--black90); 

}
input{
    width: calc(450px - 48px);
}
input:focus{
    outline: none;
}
.input-box:nth-of-type(1){
    margin-bottom: 10px;
}
.input-box:nth-of-type(2){
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.toggle-password{
    cursor: pointer;
}

.button-component{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.button-component>div:first-of-type{
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--black60);
}
.button-component>div:first-of-type a:hover{
    color: var(--black90);
    
}
.button-component button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    width: 88px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.button-component button:hover{
    background: #2A5BCD;
}
.perforation-line{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 40px;
    color: var(--black40);
}
.easy-login{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.easy-login button{
    width: 48px;
    height: 48px;
}
.kakao-login{
    background-image: url(../../image/login/kakao-button.png);
}
.naver-login{
    background-image: url(../../image/login/naver-button.png);
}
.google-login{
    background-image: url(../../image/login/google-button.png);
}
.find-login-box{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.find-login-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    font-size: 13px;
    color: #172B4D;
}
.find-input-email{
    width: 100%;
    border: 1px solid #B1B8C750;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 30px;
    padding: 16px 20px;
}
.find-send-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 10px;
    background: #B1B8C715;
    color: #172B4D60;
    font-size: 16px;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.find-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.find-text{
    color: #172B4D60;
    font-size: 14px;
}
.find-title-box{
    margin-top: 46px;
    margin-bottom: 29px;
}
.find-section{
    width: 390px;
    margin: 280px auto auto; 
}
.find-send-button.action{
    background: var(--blue);
    color: #ffffff;
}

.find-pass-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 10px;
    background: #ED5550;
    color: #ffffff;
    font-size: 16px;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1400px) {
    section.login{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 12px;
        height: 1080px;
    }
}
@media screen and (max-width: 1020px) {

    section.login{
        display: block;
        height: 100%;
        padding: 0px;
    }
    .thumbnail{
        margin-bottom: 30px;
        padding: 80px 10% 60px;
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 0px;
        color: #fff;
        font-size: 40px;
        line-height: 140%;
    }
    .thumbnail>div{
        width: 492px;
    }
    /* .thumbnail>div{
        width: 463px;
    } */
    .form_box{
        align-items: flex-start;
    }

}
@media screen and (max-width: 812px) {
  
    .thumbnail{
        border-radius: 0px;
        font-size: 35px;
        line-height: 140%;
        padding: 60px 10px 40px;
        
        margin: 0 auto 30px;
    }
    .thumbnail>div{
        width: 360px;
    }
    .form_box{
        width: 100%;
    }
    input{
        width: 260px;
    }
    .form_box>div{
        margin: 0 auto;
        padding: 0;
    }
    .button-component button{
        padding: 10px 0;
        width: 80px;
    }
}
@media screen and (max-width: 360px) {
    .thumbnail{
        font-size: 8vw;
        
    }
    .thumbnail>div{
        width: 260px;
    }
    input{
        width: 220px;
    }
}