@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/poppins-300.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/poppins-500.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/poppins-600.woff2') format('woff2');
  }
  
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/poppins-300-italic.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/poppins-500-italic.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/poppins-600-italic.woff2') format('woff2');
  }
  
  
  
  
  body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
  }
  
  b {
    font-weight: 600;
  }
  
  button {
    font-weight: 500;
  }
  


body {
    background-color: #1d1d1d;
    /* height: 100%; */
}

.main {
    background: linear-gradient(to bottom right,#38EEFF , #3897FF );
    padding: 16px;
    margin: 8vh auto;
    width: 90%;
    border-radius: 12px;
}
@media (min-width: 370px){
    .main{
    width: 370px;
    
}
}
.sand{
    background-color: #F2E7C4;
}
h1{
    color:#A62D37;
}

button{
    background: linear-gradient(to bottom right, #D92378,#532473 )!important;
    transition-duration: 0.3s;
    border-radius: 8px;
    color: white!important;
    outline: none;
    opacity: 1;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    height:60px;
    font-size: 20px;
}
button:focus {outline:0;}
@media (hover: hover) and (pointer: fine) {
    button {
        opacity: 0.8;
    }
}

button:hover{
    background: linear-gradient(to bottom right, #D92378,#532473 )!important;
    opacity: 1;
    transition-duration: 0.3s;
}

#strength {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
  border-radius: 5px;   
    background: rgb(219, 219, 219);
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 8px;
  }
  @media (hover: hover) and (pointer: fine) {
    #strength {
        opacity: 0.8;
    }
  }
  
  #strength:hover {
    opacity: 1;
  }
  
  #strength::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
  height: 28px;
  border-radius: 50%; 
    background: linear-gradient(to bottom right, #D92378,#532473 );
    cursor: pointer;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  }
  
  #strength::-moz-range-thumb {
    width: 28px;
  height: 28px;
  border-radius: 50%; 
  border:none;
    background: linear-gradient(to bottom right, #D92378,#532473 );
    cursor: pointer;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
  }

  #password{
    transition-duration: 0.3s;
    outline: none;
    height: 60px;
  }
  #password:hover{
      cursor: pointer;
        background: #0e396b !important;
        color: #38eeff !important;
        transition-duration: 0.3s;
        content: "Copy to Clipboard";
  }


  /* Tooltip container */
.tooltip {
    position: relative;
    
    
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
    
    width: 150px;
    background-color: black;
    /* opacity: 0.8; */
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    right: 0;
    top: -35px;
    z-index: 6;
    animation:animateleft 0.3s;
    opacity: 0;
    
    /* visibility: hidden; */
  }

  @keyframes animateleft{from{right:0px;opacity:0.8} to{right:-13px;opacity:0}}

  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
    opacity: 0.8;
    animation:animateright 0.3s
  }
  @keyframes animateright{from{right:-10px;opacity:0} to{right:0;opacity:0.8}}

  .footer {
      position: absolute;
      bottom: 0px;
      height: 40px;
      padding: 10px 10px;
      color: white;
      background-color:#141414;
      width: 100%;
      min-width: 360px;
      text-align: center;
      font-size: 12px;
      
  }
  .footer a{
      font-size: 12px;
      position: relative;
      text-decoration: none;
      padding: 0 12px;
      
  }