body {
    background: url(../images/body-bg.jpg) no-repeat;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #fff;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-position: center;
}

body:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background:rgba(18, 18, 43, 0.9);
    height: 100vh;
    width: 100%;
    /* background: rgba(0,0,0,0.1); */
}

a {
    text-decoration: none;
    transition: 0.4s;
    color: #fff;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #ddd;
}

.container-fluid {
    padding: 0 50px;
}

header {
    padding: 30px 0;
    z-index: 999 !important;
}

section.middle-section,footer {
    position: relative;
    z-index: 9;
}

.top-links li {
    display: inline;
    margin: 0 0 0 15px;
}

.top-links li a {
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #fff;
    padding: 10px;
}

.top-links li a:hover,
.top-links li a:focus {
    color: #0a122b;
    background: #fff;
}

.pass-field {
    display: none;
    background: #ddd;
    padding:5px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
}
.pass-field .form-control {
    width: calc(100% - 40px);
}
input.submit-btn {
    background: #0a122b;
    border: 1px solid #0a122b;
    padding: 5px 8px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}
input.submit-btn:hover,input.submit-btn:focus {
    background: transparent;
    color: #0a122b;
}
.form-control {
    font-size: 14px;
}
.form-control:focus {
    outline: 0;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    border: 1px solid #ced4da;
}
.top-links {
    position: relative;
}

.top-links ul {
    padding: 0;
    margin: 0;
}
.logo a span{
    color: #e1e1e1;
    font-family: 'Tenor Sans', sans-serif;
    /* background-image: -webkit-linear-gradient(left, crimson 50%, #FFF 50%); */
    background-image: -webkit-linear-gradient(left,  #fff 50%, #afafaf 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 0 0;
  background-size: 100% 50px;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 100px;
    letter-spacing: 6px;
    padding: 0px 0 0 30px;
    vertical-align: middle;
}
.logo a > img {
    max-width: 130px;
}
/* @keyframes shine {
  to {
    background-position: 200% center;
  }
} */
@-webkit-keyframes shine {
    100% {
      background-position: 0 -50px;
    }
  }
  
  @keyframes shine {
    100% {
      background-position: 600px 0;
    }
  }
section.middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 165px);
}
footer {
    padding: 30px 0;
}
.footer-contact a {
    color: #fff;
}
.footer-contact a:hover,.footer-contact a:focus {
    color: #ddd;
}
.pdf_msg {
    padding: 2px 3px;
    font-size: 13px;
}
.pdf_msg.success_msg {
    color: #006400;
}
.pdf_msg.error_msg {
    color: #FF0000;
}