body {
    font-family: 'News Cycle', sans-serif;
    height: 100vh;
    margin:0px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  #title {
      color:#001F5A;
      font-weight:800;
      font-size:35px;
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    background: #001f5a;
  }
  
  .login {
    border-radius: 10px 10px 10px 10px;
    padding: 10px 20px 20px 20px;
    width: 90%;
    max-width: 360px;
    position: relative;
    padding-bottom: 20px;
    background-color: white;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .login input {
    display: block;
    padding: 15px 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ddd;
    transition: border-width 0.2s ease;
    border-radius: 2px;
    color: #ccc;
  }
  .login input + i.fa {
    color: #fff;
    font-size: 1em;
    position: absolute;
    margin-top: -40px;
    opacity: 0;
    left: 0;
    transition: all 0.1s ease-in;
  }
  .login input:focus {
    outline: none;
    color: #444;
    border-color: #ffa400;
    border-left-width: 35px;
  }
  .login input:focus + i.fa {
    opacity: 1;
    left: 30px;
    transition: all 0.5s ease-out;
  }
  
  #access {
    width: 100%;
    height: 100%;
    padding: 5px 5px;
    color: #001F5A;
    display: block;
    border: 1px solid #ffa400;
    background-color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    max-height: 30px;
    border-radius: 2px 2px 2px 2px;
    font-size:1.2em;
    font-weight:normal;
  }
  
  #contactinfo { font-size:.7em; }
  #contactinfo a {  color: black; text-decoration: none; font-weight:800; }