html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

input {
	-webkit-appearance: none;
    border: none;
    border-radius: 0;
}

input:focus{
    outline: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: rgb(221, 221, 221);
	opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgb(221, 221, 221);;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
	color: rgb(221, 221, 221);;
  }

#login {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: rgb(31,56,71);
    background: -moz-linear-gradient(-90deg, rgb(31,56,71) 0%, rgb(62,113,142) 100%);
    background: -webkit-linear-gradient(-90deg, rgb(31,56,71) 0%,rgb(62,113,142) 100%);
    background: linear-gradient(180deg, rgb(31,56,71) 0%,rgb(62,113,142) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f3847', endColorstr='#3e718e',GradientType=1 );
    
}

#logo { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 270px;
    height: 300px;
    margin: auto;
}


#loginCredentials { 
    position: absolute;
    top: 250px;
    left: -10px;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 200px;
    margin: auto;
}

#failedLogin {
    
    color:#ff8080;
    width: 100%;
    text-align: center;
	font-size: 13px;
	height: 20px;
	margin-top: -20px;
}

.logintextfield { 
    border: 0; 
    height:30px; 
    width: 100%;
    margin-bottom:20px;
    text-align: left;
    border-bottom: 1px solid lightgray;
    background: transparent;
    color: white;
    padding: 0 5px 0;
    -webkit-appearance: none;
    border-radius: 0;
}
.btn_login {
    border: 0;
    border: 1px solid #223e4e;
    color: #ffffff;
    background: #223e4e;
    text-decoration: none;
    width: 100%;
    height: 40px;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
}

.btn_login:hover {
    background: #2f556b;
    text-decoration: none;
    cursor: pointer;
}

.btn_login:focus {
  outline: none;
}

#footer{
    position: fixed;
    left: 0;
    bottom: 20px;
    width:100%;
    margin:10px auto;
    font-size:12px;
    color: #1f465e;
    text-align:center;
}
