html, body {  /*并集选择器*/
    height: 100%;
}

body {
    background: url(../img/bg.jpg) 50% 50% no-repeat;
    background-size: cover;  /*扩展以覆盖窗口*/
}

.login {
    width: 350px;
    height: 450px;
    background: white;
    box-shadow: 0px 0px 50px #333;
    /*这里实现元素的居中有多种实现方法*/
    position: absolute; /*绝对定位*/
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 90px 40px;
    box-sizing: border-box;
}

.login h3 {  /*后代选择器*/
    font-size: 24px;
    margin-bottom: 50px;
}

.login form .inputBox {  /*后代选择器*/
    position: relative;
    height: 40px;
    display: flex;  /*弹性盒子 中心对齐*/
    align-items: center;
    margin-bottom: 20px;
}

.login form .inputBox input {  /*后代选择器*/
    height: 40px;
    border: 0px;
    border-bottom: 1px solid #ccc;
    flex-grow: 1;  /*扩展占据弹性容器剩余空间*/
    margin: 2px;
    padding-left: 5px;
    /*当焦点落到输入框上时，默认会有轮廓标识其状态，为美观将它删除*/
    outline: none;
  }

  .login form .inputBox input{  /*后代+伪类*/
    border: 1px solid dodgerblue;
}

.login form .inputBox label {  /*后代选择器*/
    position: absolute;  /*相对于弹性盒子绝对定位*/
    padding: 0 3px;
    left: 40px;
    top: 20px;  /*父元素高为20*/
    color: dodgerblue;
    font-size: 14px;
    background: #fff;
    opacity: 0;  /*不透明度*/
    transition: 0.5s;  /*过渡用时*/
}

.login form .inputBox input + label {   /*后代+兄弟*/
    opacity: 1;  /*不透明度*/
    top: -8px;
}

.submitButton {
    display: flex;  /*弹性盒子 中心对齐*/
    align-items: center;
}

.submitButton input {  /*后代选择器*/
    margin: 10% 10%;
    flex-grow: 1;
    cursor: pointer;  /*更改光标*/
    height: 40px;
    line-height: 40px;
    background: dodgerblue;
    color: #fff;
    border: none;
    border-radius: 5px;  /*按钮圆角*/
    outline: none;
}

.submitButton input {  /*后代+伪类*/
    box-shadow: 2px 2px 10px #555;
    transition: 0.3s;
}

.submitButton input {  /*后代+伪类*/
    box-shadow: none;
    cursor: wait;  /*更改光标*/
    outline: none;
}