/* login.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    position: relative;
    width: 100%;
    height: 100vh;
}
.box {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loginForm {
    width: 350px;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    overflow: hidden;
}
.loginForm div {
    width: 100%;
}
.body {
    padding: 30px 30px 10px 30px;
}
.title {
    padding: 10px 0px 30px 0px;
}
.title h3 {
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 26px;
    color: #404040;
}
.inputs {
    display: flex;
    flex-flow: column nowrap;
}
.input {
    position: relative;
    margin-bottom: 20px;
    height: 40px;
    display: flex;
    flex-flow: row nowrap;
}
.input i {
    font-size: 22px;
    position: absolute;
    top: 15%;
    left: 2.5%;
    color: #777;
}
.input input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 1px solid #999;
    padding: 0px 15px 0px 40px;
    font-size: 17px;
    color: #404040;
}
.input input:focus {
    border-color: #0c8;
    box-shadow: 0px 0px 0px 3px #0c89;
}
.loginBtn {
    width: 100%;
    height: 40px;
    cursor: pointer;
    border: none;
    background-image: linear-gradient(130deg, #090, #0c0);
    box-shadow: 0px 4px 0px #090;
    font-size: 20px;
    color: #fff;
    transition: transform 0.15s ease;
}
.loginBtn:focus {
    transform: translateY(-5%);
}
.msg {
    line-height: 30px;
    text-align: center;
    color: #f00;
    margin-top: 10px;
}
.footer {
    padding: 10px 30px;
    background-color: #e6e6e6;
    border-top: 1px solid #bfbfbf;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}