@charset "UTF-8";

.login-container{
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex; justify-content: center; align-items: center; flex-direction: column;

    background: url('../images/login_bg.jpg') no-repeat center / cover;
}

.login-container .copyright{
    color: rgba(0, 0, 0, 0.25);
    text-align: center;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    position: absolute;
    bottom: 1rem;
    left: 0;
}
.login-container .copyright br{
    display: none;
}
.login-box{
    max-width: 490px;
    width: 100%;
    padding: 2.75rem 3rem;
    border-radius: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.08);
}

.login-box .title{
    margin-bottom: 2rem;
}
.login-box .title .logo{
    text-align: center;
}
.login-box .title .text{
    text-align: center;
    margin-top: 1.5rem;
}
.login-box .title .text p{
    color: #333;
    line-height: 1.4;
    font-size: 1.7rem;
}
.login-box .title p span{
    color: var(--VolvoBlue); font-weight: 700; font-size: 1.1em; letter-spacing: 1px;
}
.login-box .title .text small{
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--lightGray);
}
.login-box .title .text small span{
    border: 1px solid #ddd; border-radius: 50%; padding: 0.2rem 0.4rem;
    font-size: 0.9em; font-weight: 600; letter-spacing: 1px;
}

.login-box .inputbox{
    margin-bottom: 1.5rem;
}
.login-box .inputbox .tit{
    margin-bottom: 0.6rem; font-size: 0.95rem;
}
.inputbox .con{
    position: relative;
}
.login-box .inputbox input{
    height: 3.125rem;
    line-height: 3.125rem;
    width: 100%;
    font-size: 1rem;
}
.inputbox input[type="password"],
.inputbox .hide-pw input{
    padding-right: 3rem;
}
.inputbox input[type="password"]+.show-pw,
.inputbox .hide-pw input+.show-pw{
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    text-indent: -9999px; display: block; width: 22px; height: 22px;
    background: url('../images/ic_show_pw.svg') no-repeat center;
    cursor: pointer;
}
.inputbox .hide-pw input+.show-pw{
    background-image: url('../images/ic_hide_pw.svg');
}
.login-box .forgot-pw{
    color: var(--red);
    text-align: right;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.21px;
}

.login-btn{
    width: 100%; background-color: var(--black); color: var(--white); height: 3.5rem; font-size: 1.1rem;
    margin-top: 2rem;
}

@media (max-width: 576px){
    .login-container .copyright br{
        display: block;
    }
    .login-box{
        max-width: 90%;
    }
}
@media (max-width: 425px){
    .login-box{
        padding: 1.75rem 2rem;
        border-radius: 2rem;
    }
    .login-box .title .logo img{
        width: 120px;
    }
    .login-box .title .text p{
        font-size: 1.5rem;
    }
}