﻿* {
  box-sizing: border-box;
}
body {
  margin:0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color:white;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background-image: url('../img/login_bg.jpg');
  background-size:cover;
  background-color:#2b2b2b; 
}

.login-div {
  width:430px;
  padding: 60px 35px 35px 35px;
  background: radial-gradient(circle, #555555, #535353, #505050, #4e4e4e, #4c4c4c);
}


.title.login {
  font-family: 'Work Sans', sans-serif;
  font-size: 45px;
}
.title {
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-size: 25px;
  font-weight:bold;
  letter-spacing: 2px;
  color: #fff;
}
.sub-title {
  text-align: center;
  font-size:10px;
  padding-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
}
.fields{
  padding: 3px 5px 3px 5px;
}
.fields input {
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  width: 89%;
  font-family: 'Lato', sans-serif;
  color: white;
  padding: 10px 10px 10px 5px;
}
.username, .password {
  display: block;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 30px;
}
::placeholder  { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
  font-size: 20px;
  font-weight: 300;
}
::-ms-input-placeholder
{ /* Microsoft Edge */
  color: white;
  font-size: 20px;
  font-weight: 300;
}
.button {
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  font-size: 22px;
  font-family: 'Lato', sans-serif;
  color:white;
  text-align: center;
  letter-spacing: 1px;
  background: radial-gradient(circle, #eb3030, #e42c2c 25.21%, #de3434, #da3232, #bf2c2c);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.button:hover {
  background:radial-gradient(circle, #f53030, #f22d2d 25.21%, #f63131, #f53636, #e43030);
}
.button:active {
  background: radial-gradient(circle, #eb3030, #e42c2c 25.21%, #de3434, #da3232, #bf2c2c)
}
.link {
  padding-top: 20px;
  text-align: center;
}
.link a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}
.fields svg {
  height: 22px;
  margin-bottom: -3px;
  margin-right: 10px;
}
.nos-red{
  color:#e61e14;
}
.manage-div{
  width:700px;
  height:500px;
  background:#fff;
  color:#000;
}
.manage-div .title{
  color:#fff;
  padding:10px;
  background: radial-gradient(circle, #555555, #535353, #505050, #4e4e4e, #4c4c4c);
}
.manage-nav{
  width: 250px;
  height: 100%;
  float: left;
  background: #343a40;
  color: #fff;
  box-shadow: 1px 1px 15px #000;
}
.manage-nav ul{
  list-style-type: none;
  margin-top:0;
  padding-left:0;
}
.manage-nav .nav-item{
  padding: 0px;
  cursor:pointer;
  border-bottom: 1px solid rgb(245, 228, 228);
}
.manage-nav .nav-item:hover{
  background:rgba(255,255,255,0.1);
  
}
.manage-nav .nav-item:hover a{
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}
.manage-nav .nav-item .nav-link.active{
   background-color: rgba(255,255,255,0.25);
   color: white;
 }
.nav-item a{
  color: #b1a3a3;
  text-decoration: none;
}
.manage-body{
  width:400px;
  float:left;
  padding-left:20px;
  padding-top:20px;
}
.manage-body h4{
  font-family: 'Lato'; 
}

.validation-summary-errors ul {
    list-style-type: none;
    padding: 0;
    color: #af1e17;
    padding: 5px;
    margin: 10px 0px;
    border: 1px dashed #af1e17;
    background-color: white;
}
.form-group label{
  font-size:.8em;
  font-weight: bold;
  color:#af1e17;
}

.login-div a {
    color: white;
    text-decoration: underline;
}

.reset-dev .form-group label {
    color: white;
}

