*{
    margin:0;
    padding:0;
    font-family: 'Roboto Condensed', sans-serif;
    box-sizing: border-box;
  }
  
  body{
      background-color: #121212;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
  }
  
  .card-wrapper{
    max-width: 400px;
    width: 90%;
    border-radius: 10px;
    background:rgba(243, 242, 242, 0.8);
    backdrop-filter: blur(13px);
    box-shadow: 0 0 20px -2px black;
    display:flex;
    justify-content:center;
    flex-direction: column;
    padding: 20px 0;
    color: rgba(18,18,18,0.85);
  }
  
  .call-to-action{
    text-align:center;
    padding: 10px 0;
    font-family: 'Fredoka One';
    text-transform: uppercase;
  }
  .card-wrapper form{
    display:flex;
    flex-direction:column;
  }
  .card-wrapper form .field{
    width: 100%;
    position: relative;
    font-size: 18px;
    padding: 7px 30px;
    white-space: no-wrap;
  }
  .card-wrapper form .field::after{
    content : "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    height: 1px;
    width: 85%;
    padding-top: 5px;
    border-top:1px solid rgba(18,18,18,0.6);
  }
  .card-wrapper form a{
    margin-right: 10%;
    margin-top: 10px;
    text-align: right;
    font-size: 16px;
    text-decoration:none;
    color:rgba(18,18,18,0.7);
    
  }
  
  .card-wrapper form a span{
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .card-wrapper form a:hover span{
    color: #121212;
    border-bottom-color: #121212;
  }
  .card-wrapper form .field i{
    font-size: 22px;
    height: 30px;
    width: 30px;
    vertical-align: middle;
    text-align:left;
  }
  .card-wrapper form .field label{
    width: 100%;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 30px;
  }

  .card-wrapper form .field input{
    border: 0;
    background: transparent;
    padding:0 5px;
    color: inherit;
    font-family: inherit;
    font-size: 0.9rem;
    height: 30px;
    width: calc(100% - 50px);
    vertical-align: middle;
  }
  .card-wrapper form .field input:focus{
    outline:none;
  }
  .card-wrapper form .field input::placeholder{
    color: rgba(18,18,18,0.7);
  }
  
  #login-button{
    margin: 20px 0;
    width: 50%;
    height: 40px;
    border-radius: 20px;
    border:none;
    background: rgba(255, 255, 255, 0.8);
    position:relative;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #login-button:hover{
    background: rgba(18,18,18,0.3);
    color: rgba(255,255,255,0.8);
  }

  .alternate-logins, .sign-up{
    padding: 0px 0;
    text-align:center;
  }
  
  .sign-up a{
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  
  .sign-up a:hover{
    color: #121212;
    border-bottom-color: #121212;
  }

  .forget_password{
    font-size: 0.8rem;
  }

  .wrong-rights-style{
    font-size: 0.9rem;
    text-align: center;
    color: crimson;
  }

  .wrong-rights-style p{
    margin: 5px 0px 5px 0px;
  }

  .wrong-rights-hidden{
    display: none;
  }