* {
    margin: 0; padding: 0;
  }

  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  #container {
    overflow: auto;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }

  #background_video {
    position: fixed;

    top: 50%; left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;
    height: 100%; width: 100%;
  }

  #video_cover {
    position: fixed;
    width: 100%; height: 100%;
    background: url('/assets/login/images/video_cover.jpeg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  #video_controls {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
  }

  #play img {
    width: 100px;
  }
  #pause img {
    width: 90px;
  }
  #pause {
    display: none;
  }

  @media (min-width: 768px) {
    #video_controls {
      display: none;
    }
  }

  /* Demo page specific styles */

  body {
    text-align: center;
    font-family: 'proxima-nova', Helvetica;
  }

  #container {
    height: 100%;
  }

  #overlay {
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }

  #main_content {
    z-index: 2;
    position: relative;
    display: inline-block;
    background-color: #272f50;
    top: 0;
    height: 70vh;
    opacity: 0.9;
  }

  #main_content h1 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'proxima-nova-condensed', Helvetica;
    color: #fff;
    font-size: 35px;
  }

  #main_content .sub_head {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
  }

  #main_content .info {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 10px;
  }

  #links {
    margin-top: 50px;
  }

  #links a {
    border: 2px solid rgba(255,255,255,0.20);
    border-radius: 61px;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 25px;
    display: inline-block;
    margin-right: 15px;
  }

  #footer {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px 120px 20px 120px;
    opacity: 0.8;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }

  .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 20px;
    box-sizing: border-box;
    padding: 1px 12px 1px 12px;
    /*background-color: #2563AA;*/
    background-color: #ffffff;
    color: #000000!important;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-out;;
  }
  
  .btn > .logo {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }

  .btn.circular{
    background-color: #fff;
    color: #232323!important;
  }

  .btn:hover{
    opacity: 0.7;
  }

  #footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 10px;
    font-size: 12px;
  }
  #footer a:first-child {
    float: left;
  }
  #footer a:last-child {
    float: right;
  }