*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
input{
    outline: none;
    border: none;
}
#app{
    width: 100vw;
    height: 100vh;
    background-image: url("../img/login.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    min-height: 900px;
    min-width: 900px;
}
.loginbox{
    position: absolute;
    width: 34%;
    height: 60%;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    min-height: 340px;
}
.title{
    color: white;
    font-size: 32px;
    letter-spacing: 4px;
    transition: all .5s;
}
.logininfo{
    width: 80%;
    background-color: #fff;
    margin-top: 5%;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, .1);
    border-radius: 8px;
    display: flex;
    transition: all .5s;
    border: 1px solid #fff;
    align-items: center;
    flex-direction: column;
    padding-bottom: 1vw;
    padding-top: 1vw;
}
.logininfo:hover{
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 255, .2);
    border: 1px solid skyblue;
}
.logininfo img{
    width: 12vw;
    height: 12vw;
    min-width: 200px;
    min-height: 135px;
}
.btn-box{
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
    color: white;
    align-items: center;
}
.btn-box label{
    cursor: pointer;
}
.btn-box span{
    cursor: pointer;
}
.inputbox{
    width: 80%;
    height: 2vw;
    background-color: #f0f0f0;
    margin-top: 2vw;
    border-radius: 8px;
    display: flex;
    align-items: center;    
    padding-left: 5%;
    min-width: 200px;
    min-height: 33px;
    transition: all .5s;
}
.inputbox input{
    background-color: #f0f0f0;
}
.btn{
    width: 80%;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    letter-spacing: 2px;
    background-color: rgb(122, 219, 83);
    margin-top: 2vw;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
    transition: all .5s;
    min-width: 200px;
    min-height: 33px;
    cursor: pointer;
}
.btn:hover{
    background-color: rgb(154, 231, 124);
}
