@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700&display=swap');

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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Lexend', sans-serif;
    font-weight:300;
    background-color: #f7f7f7;
    color:#232323;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  box-sizing: border-box;
}
h1 {
    font-family: 'Questrial', sans-serif;
    font-weight:400;
    font-size:42px;
}
a {
  text-decoration: none;
  color:#BCAFFF;
  position: relative;
}
.grid-container {
    display: grid;
    grid-template: 'myArea myArea myArea ...';
    grid-gap: 10px;
    padding: 10px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
}
/*SMOOTH BUTTON*/
.sf__btn-main {
    padding: 10px 0px;
    border-radius: 15px;
    cursor: pointer;
    border:none;
    text-align: center;
    transition: filter 250ms ease, transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight:300;
  }
.sf__btn {
    padding: 15px 30px;
    border-radius: 15px;
    cursor: pointer;
    border:none;
    text-align: center;
    transition: filter 250ms ease, transform 150ms ease !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight:300;
  }
  
  .sf__btn-primary {
    color: #232323;
    background-color: #BCAFFF;
    transition:all 0.2s ease-in-out;
  }
  .sf__btn-primary:hover {
    color: #232323;
    background-color: #fff;
  }
  .sf__btn-white {
    color: #232323;
    background: #fff;
    box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.06);
    transition:all 0.2s ease-in-out;
  }
  .sf__btn-white:hover {
    color: #232323;
    background-color: #f5f5f5;
  }
  .sf__btn-black {
    color: #fff;
    background-color: #232323;
    transition:all 0.2s ease-in-out;
  }
  .sf__btn-black:hover {
    color: #232323;
    background-color: #FFBCD2;
  }
  
  .sf__btn-secondary {
    color: #BCAFFF;
    background-color: transparent;
    border: 1px solid #BCAFFF;
    transition:all 0.2s ease-in-out;
  }
  .sf__btn-secondary:hover {
    color: #232323;
    background-color: #FFBCD2;
  }
  .sf__btn:active {
    transform: scale(0.97);
  }
  .tooltip {
    background-color: #fff;
    color:#232323;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    position: absolute;
    width: 200px;
    text-align: center;
    bottom: -20px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-in-out;
  }
  .tooltip:before {
    content: '';
    height: 20px;
    width: 20px;
    background-color: #fff;
    position: absolute;
    top: -5px;
    left: 50%;
    border-radius: 6px;
    transform: translateX(-50%) rotate(45deg);
  }
.tooltip-right {
    background-color: #fff;
    color:#232323;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    position: absolute;
    width: 200px;
    text-align: center;
    bottom: -20px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    left: -50%;
    transform: translateX(-50%);
    transition: all 0.2s ease-in-out;
  }
  .tooltip-right:before {
    content: '';
    height: 20px;
    width: 20px;
    background-color: #fff;
    position: absolute;
    top: -5px;
    right: 30px;
    border-radius: 6px;
    transform: rotate(45deg);
  }
a:hover .tooltip-right {
    opacity: 0.8;
    visibility: visible;
    bottom: -70px;
  }
  a:hover .tooltip {
    opacity: 0.8;
    visibility: visible;
    bottom: -70px;
  }
  .title {
    font-family: 'Questrial', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #BCAFFF;
  }
  input {
    padding: 15px 20px;
    background-color: #fff;
    margin: 10px 0;
    border-radius: 10px;
    color: #232323;
    border:none;
    outline: none;
    width: 100%;
  font-size: 14px;
}
section {
width:100%;
}
.container {
  background-color: #fff;
  border-radius: 20px;
box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.06);
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
}
.password {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.password input:valid ~ .show-pass {
  display: block;
  transition: all 0.2s ease-in-out;
}
i.bx.bx-show-alt.show-pass.hide-pass:before {
  content: "\eb0e";
}
.password .show-pass {
  position: absolute;
  right:20px;
  cursor: pointer;
  display: none;
  color: #232323;
  transition:  all 0.2s ease-in-out;
}