/* the simple css for the login page and form */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: black;
    height: 100%;
}
.bgLogin {
    background: url("/Images/bg.jpg") no-repeat center fixed;
    background-size: cover;
    position: relative;
    height: 100%;
}
.bgIndex {
  background: url("/Images/bgIndex.jpg") no-repeat center fixed;
  background-size: cover;
  position: relative;
  height: 100%;
}
.indexPageTextColor {
  color: white;
}
.center {
    display: flex;
    justify-content: center;
}
.login-form {
    width: 340px;
    margin: 30px auto;
}
.login-form form {
    margin-bottom: 15px;
    background: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}
.login-form h2 {
    margin: 0 0 15px;
}
.form-control, .btn {
    min-height: 38px;
    border-radius: 2px;
}
.btn {
    font-size: 15px;
    font-weight: bold;
}
.login-form .hint-text {
    text-align: center;
    padding-top: 10px;
    font-size: 13px;
}
.login-form a {
    color: #fff;
    text-decoration: underline;
}
.login-form a:hover {
    text-decoration: none;
}
.login-form form a {
    color: #7a7a7a;
    text-decoration: none;
}
.login-form form a:hover {
    text-decoration: underline;
}
.box{
    height:400px;
    width:400px;
    font-family:Helvetica;
    color:#fff;
    background:rgba(0,0,0,0.25);
    padding:30px 0px;
    margin: auto;
    margin-top: 200px;
  }
#green-link{
  color:#39b54a;
}
.loginLogo {
    width:330px;
    padding: 0px 35px;
}
  .box h1{
    text-align:center;
    margin:30px 0;
    font-size:30px;
  }
  .box input{
    display:block;
    width:300px;
    margin:20px auto;
    padding:15px;
    background:rgba(0,0,0,0.3);
    color:#fff;
    border:0;
  }
  .box input:focus,.box input:active,.box button:focus,.box button:active{
    outline:none;
  }
  .box button{
    background:#2f943d;
    border:0;
    color:#fff;
    padding:10px;
    font-size:20px;
    width:330px;
    margin:20px auto;
    display:block;
    cursor:pointer;
  }
  .box button:active{
    background:#27ae60;
  }
  .box p{
    font-size:14px;
    text-align:center;
  }
  .box p span{
    cursor:pointer;
    color:#666;
  }
  .navbar-flex {
    margin: 0;
    padding: 0;
    background-color: #464646;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
  }
  .inline {
    display: inline;
  }
  .margin-R20 {
    margin-right: 20px;
  }
  .navLinks {
    padding: 10px 10px;
    color: #00af49;
    background-color: rgb(45, 45, 45);
    border-radius: 4px;
  }
  /* code for send-button */
  .send-button {
    width: 180px;
    padding: 12px 18px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #fff;
    background-color: #00af49;
    border: none;
    border-radius: 3px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .send-button span {
    white-space: nowrap;
  }
  .send-button:hover {
    background-color: #00ffc8;
  }
  i {
    margin-left: 12px;
  }
  .plane {
    position: absolute;
    right: 18px;
  }
  .fa-check,
  .fade {
    animation: fade 2s;
    animation-fill-mode: forwards;
  }
  .fa.hidden {
    display: none;
  }
  .fa.visible {
    display: inline;
  }
  .fly {
    position: absolute;
    animation-name: a;
    animation-duration: 10s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-delay: 0;
  }
  .done {
    background-color: #2eecfa;
  }
  .done:hover {
    background-color: #2eecfa;
  }
  @-moz-keyframes fade {
    0% {
      color: transparent;
    }
    100% {
      color: #fff;
    }
  }
  @-webkit-keyframes fade {
    0% {
      color: transparent;
    }
    100% {
      color: #fff;
    }
  }
  @-o-keyframes fade {
    0% {
      color: transparent;
    }
    100% {
      color: #fff;
    }
  }
  @keyframes fade {
    0% {
      color: transparent;
    }
    100% {
      color: #fff;
    }
  }
  @-moz-keyframes a {
    0% {
      top: 10px;
      left: 80px;
    }
    100% {
      top: -10000px;
      left: 10000px;
      transform: scale(-5);
    }
  }
  @-webkit-keyframes a {
    0% {
      top: 10px;
      left: 80px;
    }
    100% {
      top: -10000px;
      left: 10000px;
      transform: scale(-5);
    }
  }
  @-o-keyframes a {
    0% {
      top: 10px;
      left: 80px;
    }
    100% {
      top: -10000px;
      left: 10000px;
      transform: scale(-5);
    }
  }
  @keyframes a {
    0% {
      top: 10px;
      left: 80px;
    }
    100% {
      top: -10000px;
      left: 10000px;
      transform: scale(-5);
    }
  }
  

/*Code for user tabel */
#users {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#users td, #users th {
  border: 1px solid #1d1d1d;
  padding: 8px;
}

#users tr:nth-child(even){
  background-color: #4d4d4d;
}
#users tr:nth-child(odd){
  background-color: #2b2b2b;
}

#users tr:hover {
  background-color: #ddd;
  color: black;
}

#users th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #2f943d;
  color: white;
}
