:root {
    --black: #252525;
    --yellow: #FFD31D;
  }


  @font-face {
    font-family: Text-bold;
    src: url(/plugins/fonts/Inter-Black.ttf);
}

@font-face {
    font-family: Text-semibold;
    src: url(/plugins/fonts/Inter-Bold.ttf);
}

html, body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  .card{
    position: relative;
    overflow: hidden;
    width: 330px;
    min-height: 100px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 6px 0 rgb(84 102 129 / 16%);
    padding-top: 80px;
    box-sizing: border-box;
    transition: .3s;
    padding-bottom: 80px;
    cursor: pointer;
  }
  .card:hover{
    transform: translate(-3px, -3px)
  }
  
  
  .title h1{
    font-family: 'Varela Round', sans-serif;
    text-align: center;
    color: var(--black);
    font-size: 2em;
    font-family: "Text-bold" , "sans-serif";
    text-transform: uppercase;
    margin: 0;
  }
  
  .input-block i{
    position: absolute;
    color: #FF927A;
    top: 14px;
    left: 48px;
  }
  .input-block{
    display: flex;
    justify-content:center;
    flex-direction: column;
    align-items:center;
  }
  .block{
    display:flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    margin-top: 15px;
    position:relative;
    transition: .3s;
  }
  .block:hover{
    transform:translate(-2px,-2px)
  }
  
  input{
    box-sizing:border-box;
    padding-left: 35px;
    color: var(--black);
    background: #ffefa1;
    border: none;
    border-radius: 10px;
    width: 260px;
    height: 45px;
    outline: none;
  }
  input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--black);
    opacity: 0.6; /* Firefox */
  }
  
  .login_btn{
    outline: none;
    cursor:pointer;
  /*   font-family: 'Varela Round', sans-serif; */
  /*   letter-spacing: 2px; */
    border: none;
    color: var(--black);
    background: var(--yellow);
    margin-top: 20px;
    height: 45px;
    width: 260px;
    font-size: 18px;
    border-radius: 15px;
    transition: .3s;
    font-family: "Text-semibold" , "sans-serif";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .login_btn:hover{
    transform:translate(-2px,-2px)
  }
  
  .link-block{
    margin-top: -10px;
    font-family: 'Varela Round', sans-serif;
    color: var(--black);
    opacity: 0.8;
  }
  
  .forget {
    margin-top: 0;
  }
  
  .create{
    margin-top: 50px;
    bottom: 0;
  }
  
  .create i {
    margin-left: 10px;
  }
  
  .error{
    display: none;
    color: red;
    font-family: "Text-semibold" , "sans-serif";
    text-align: center;
    margin: 0;
    margin-top: 1.5em;
  }


  