body, html {
    /*background-image: url(/img/backgroundimage.jpg);*/
    background: #eaf6fd;
    width: 100%;
    height: 100%;
}

.login{
    text-align: center;
}

.loginform {
    display: inline-table;
    width: 25%;
    border: 5px solid rgba(255,255,255,0.8);
    border-radius: 10px;
    opacity: 0.8;
    background-color: ghostwhite;
}

.bg {
  /* The image used */
  background-image: url('/img/blue-networks.jpg');

   height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.nmsLogo {
    display: block;
    text-align: right;
    z-index: 10000;
}

.nmsLogoImg {
    width: 10%;
    height: auto;
}

.login input[type=text]{
    width: 90%;
    height: 45px;
    opacity: 1;
    border: 2px solid rgba(255,255,255,0.8);
    background-color: lightsteelblue;
    border-radius: 5px;
    color: #263164;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 4px;
}

.login input[type=password]{
    width: 90%;
    height: 45px;
    opacity: 1;
    border: 2px solid rgba(255,255,255,0.8);
    background-color: lightsteelblue;
    border-radius: 5px;
    color: #263164;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 4px;
    margin-top: 10px;
}

.login input[type=button]{
    width: 260px;
    height: 35px;
    background: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 2px;
    color: #a18d6c;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 6px;
    margin-top: 10px;
}

/*
.login input[type=button]:hover{
    opacity: 0.8;
}

.login input[type=button]:active{
    opacity: 0.6;
}

.login input[type=text]:focus{
    outline: none;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 5px;
}

.login input[type=password]:focus{
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}
*/

.login input[type=button]:focus{
    outline: none;
}

::-webkit-input-placeholder{
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
    color: rgba(255,255,255,0.6);
}
.textfailure {
    color: #ff0000;
    font-size: 14px;
}
.login ::placeholder {
    color: #000080;
    opacity: 0.6;
}