@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
body{
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    background: #eee;
    color: #666;
}

.login-container{
    height: 100px;
    width: 100%;
}

.login-form{
    margin: auto;
    width: 370px;
    padding: 15px;
    max-width: 100%;
}

.login-form .form-control{
    /* 字体大小 */
    font-size: 15px;
    /* 最小高度 */
    min-height: 48px;
}

.login-form a{
    text-decoration: none;
    color: #8c00ff;
}


.login-form a:hover{
    color: #723dbe;
}


.forgot-link{
    font-size: 13px;
}

.form-control:focus{
    border-color: #723dbe;
    box-shadow: 0 0 0 0.2rem rgba(114, 61, 190, 0.25);
}

.btn-custom{
    background: #0400ff;
    border-color: #043cbfb9;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    min-height: 48px;
}

.btn-custom:focus,
.btn-custom:hover,
.btn-custom:active,
.btn-custom:active:focus
{
    background: #6600ff;
    border-color:#6600ff;
    color: #fff;
}

.btn-custom:focus{
    box-shadow:  0 0 0 0.2rem rgba(114, 61, 190, 0.25);
}