@import "/vendor/bootstrap-4.4.1/css/bootstrap.min.css";
@import "/vendor/materialdesign-4.9.95/css/materialdesignicons.min.css";

.nms-container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-image: url("../image/login-bg.jpg");
}

.nms-login {
    max-width: 400px;
    display: block;
    margin: 0 auto;
    padding-top: 20vh;
}

.nms-login>div {
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 6px 10px rgba(0, 176, 255, 0.25);
}

.nms-login-header {
    text-align: center;
}

.nms-login-header>div:first-child {
    margin: 15px auto;
    font-size: 1.25rem;
}

.nms-login-header>div:last-child {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #9e9e9e;
}

.nms-login-body {
}

.nms-login-input {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.nms-login-input>input {
    height: 40px;
    line-height: 40px;
    padding-left: 30px;
    font-size: 0.875rem;
    border: 1px solid #cccccc;
    border-left: 3px solid #9e9e9e;
    border-radius: 3px;
}

.nms-login-input>input[name="username"],
.nms-login-input>input[name="password"]{
    width: 100%;
}

.nms-login-input>input[name="captcha"] {
    width: 240px;
}

.nms-login-input>input:focus {
    padding-left: 10px;
    border-color: #1d84df;
    outline: none;
    transition: all 0.4s ease;
}

.nms-login-input>i {
    width: 30px;
    position: absolute;
    top: 0;
    left: 3px;
    line-height: 40px;
    font-size: 1.125rem;
    color: #9e9e9e;
    text-align: center;
    transition: all 0.4s ease;
}

.nms-login-input>input:focus+i {
    opacity: 0;
    transform: scale(0.8, 0.8);
}

.nms-login-input>img {
    width: 80px;
    height: 40px;
}

.nms-login-footer {
}

.nms-login-footer>button {
    width: 100%;
    height: 36px;
    display: block;
    font-size: 1rem;
    color: #ffffff;
    background-color: #1d84df;
    border-style: none;
    border-radius: 3px;
}

.nms-login-footer>div {
    text-align: center;
    font-size: 0.875rem;
    color: #9e9e9e;
}