@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

html {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
    background-color: #0c101d;
}

.navbar {
    background-color: #000 !important;
}

.navbar .navbar-collapse {
    text-align: center;
}

.main-raised {
    margin: 0 0px 0px;
    background: #FFFFFF;
    z-index: 1;
    border: 3px solid #bdf;
}

@media (max-width: 480px) {
    .text-responsive {
        font-size: 3vw;
    }
}

.inline-headers h3 {
    display: inline-block;
    vertical-align: baseline;
    margin: 0 22px; color: #ff3b00;
}

.options-area {
    background-color: #333 !important;
}

.g-recaptcha {
    display: inline-block;
}

.row {
    margin: 15px;
    margin-left: 0;
    margin-right: 0;
}

.menu-item.active,
.menu-item:hover {
    color: white;
    background-color: #333;
    cursor: pointer;
}

.accounts-box {
    box-sizing: content-box;
    width: 100%;
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
}

table {
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #666;
    padding: 5px;
}

.input-group {
    width: 100%;
}



h2,
h3,
h4,
h5 {
    color: #cb935a;
    font-family: "Frank Ruhl Libre";
}

footer {
    width: 100%;
    background-color: #000;
    bottom: 0;
    position: relative;
    margin-top: auto;
}

.copyright {
    color: #666;
}


  label {
    display: block;
    position: relative;
    margin: 40px 0px;
  }
  .label-txt {
    position: absolute;
    top: -1.6em;
    padding: 10px;
    font-family: sans-serif;
    font-size: .9em;
    letter-spacing: 1px;
    color: rgb(120,120,120);
    transition: ease .3s;
  }
  .input {
      margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
  }
  
  .line-box {
    position: relative;
    width: 100%;
    height: 2px;
    background: #BCBCBC;
  }
  
  .line {
    position: absolute;
    width: 0%;
    height: 2px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(204, 97, 26);
    transition: ease .6s;
  }
  
  .input:focus + .line-box .line {
    width: 100%;
  }
  
  .label-active {
    top: -3em;
  }
  
  button {
    display: inline-block;
    padding: 12px 24px;
    width: 100%;
    background: #e4b144;
    font-weight: bold;
    color: #FFF;
    border: none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    transition: ease .3s;
  }
  
  button:hover {
    background: rgb(195, 177, 74);
    color: #ffffff;
  }
  

.container  {
    max-width: 620px;
}

a:hover {
    text-decoration: none !important;
  }