@charset "utf-8";
/* =====================================

	* login 
	
====================================== */
html,
body{
    width: 100%;
    height: 100%;
}
#wrap.login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/login/bg_login.png');
    background-size: cover;
}
.login-wrap{
    width: 700px;
    max-width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border: 4px solid transparent;
    border-radius: 8px 8px 40px 8px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #972ae6 0%, #626fbf 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 23px 35px rgba(0,0,0,0.2);
}
.login-form{    
    padding: 65px 20px 70px;
    margin: 0 auto;
}
.login-tit-wrap{
    margin-bottom: 30px;
    text-align: center;
}
.login-logo{
    display: block;
    margin-bottom: 35px;
}
.login-logo > a{
    display: inline-block;
    vertical-align: top;
}
.login-tit{
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
}
.login-tit strong{
    display: block;
    margin-top: 5px;
    font-size: 7rem;
    font-weight: 700;
    color: #1b53af;
}
.login-tit-wrap p{
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #414141;
}
.login-form .input-box{
    max-width: 370px;
    margin: 0 auto;
}
.login-form .form-item{
    display: inline-block;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 3px;
    background-color: #eeeeee;
    font-size: 1.8rem;
    color: #414141;
}
.login-form .form-item + .form-item{
    margin-top: 20px;
}
.login-form .btn-wrap{
    max-width: 370px;
    margin: 20px auto 0;
}
.login-form .btn.btn-login{
    display: inline-block;
    width: 100%;
    padding: 18px 0;
    background: rgb(0,135,250);
    background: linear-gradient(54deg, rgba(0,135,250,1) 0%, rgba(128,70,223,1) 100%);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    box-shadow: 0 0 8px rgba(56,75,145,0.3);
}


/* =====================================

	* resopnsive 
	
====================================== */
@media screen and (max-width: 1024px){
    html,
    body{
        font-size: 9px;
    }
}

@media screen and (max-width: 768px){
    html,
    body{
        font-size: 8px;
    }
    
    .login-wrap{
        border-radius: 4px 4px 20px 4px;
    }
    .login-form{
        padding: 40px 20px;
    }
    .login-logo{
        margin-bottom: 20px;
    }
    .login-logo > a{
        width: 150px;
    }
    .login-logo > a img{
        width: 100%;
    }
    .login-tit-wrap{
        margin-bottom: 20px;
    }
    .login-tit{
        font-size: 20px;
    }
    .login-tit strong{
        margin-top: 2px;
        font-size: 40px;
    }
    .login-tit-wrap p{
        margin-top: 20px;
        font-size: 14px;
    }
    .login-form .input-box{
        max-width: 100%;
    }
    .login-form .form-item{
        height: 40px;
        padding: 0 10px;
        font-size: 14px;
    }
    .login-form .form-item + .form-item{
        margin-top: 10px;
    }
    .login-form .btn-wrap{
        max-width: 100%;
    }
    .login-form .btn.btn-login{
        padding: 12px 10px;
        font-size: 16px;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    html,
    body{
        height: auto;
    }
    #wrap.login{
        align-items: start;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}