* {
    margin: 0;
    padding: 0;
    font-family: helvetica, arial, sans-serif;
    box-sizing: border-box;
  }
  
  body {
    background-color: #ffffff;
    position: relative;
    height: 115vh;
    overflow-x: hidden;
  }
  
  #container {
    display: flex;
  }

  #headlogo{
    display: flex;
  }
  
  #logo{
    width: 30%;
    margin: auto;
  }

  #login {
    margin: auto;
    position: relative;
    background-color: #e9e6e6;
    height: 350px;
    width: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    top: 18vh;
    justify-content: flex-start;
    padding: 10px 10px 20px 10px;
    align-items: center;
    box-shadow: 0 5px 5px 3px gainsboro;
  }
  
  #login > a {
    margin: 10px 0;
    text-decoration: none;
    font-size: 15px;
    color: #048bc4;
  }
  
  #login > a:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  
  hr {
    width: 95%;
    height: 0.1%;
    background-color: rgb(194, 193, 193);
    border: none;
  }
  
  #login > input[type="text"],
  #login > input[type="password"] {
    height: 35%;
    margin: 8px, 0;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 16px;
    width: 95%;
    border: 1.5px solid grey;
    background-color: #fff;
  }
  
  #login > input[type="password"] {
    margin-bottom: 12px;
    margin-top: 12px;
  }
  
  #login > input[type="text"]:focus,
  #login > input[type="password"]:focus {
    outline: none;
    border: 1px solid #0c94c4;
    box-shadow: 0 0 5px #2b9ccc;
    caret-color: #0c94c4;
  }
  
  #login-button {
    background-color: #0c94c4;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    height: 120px;
    font-weight: bold;
    width: 95%;
  }
  
  #login-button:hover {
    background-color: #048bc4;
    cursor: pointer;
  }
  
  #create-new-account {
    background-color: #42b72a;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    height: 100px;
    font-weight: bold;
    width: 60%;
    margin-top: 20px;
  }
  
  #create-new-account:hover {
    background-color: #36a420;
    cursor: pointer;
  }

  p{
    padding-left: 12px;
    align-self: flex-start;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  @media screen and (max-width: 1114px) {
    #recent-logins {
      left: 70px;
      margin-right: 22vw;
    }
    #login {
      right: 30px;
    }
  }
  
  @media screen and (max-width: 900px) {
    body {
      height: 150vh;
    }
    #container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    #recent-logins {
      margin-right: 0;
      align-items: center;
      left: 0;
      top: 20px;
    }
    #card-1 {
      margin-right: 5px;
    }
    #card-2 {
      margin-left: 5px;
      margin-right: 0;
    }
    #login {
      text-align: center;
      left: 0;
      margin-right: 0;
      margin-top: -30px;
      top: 80px;
    }
    #recent-logins,
    #login {
      position: relative;
    }
    footer {
      position: absolute;
      padding: 20px;
      width: 100vw;
    }
  }
  
  @media screen and (max-heigth: 670px) {
    footer {
      position: relative;
      top: 100px;
    }
  }
  