*{
  font-family: 'Poppins', sans-serif;
}
.coffe{
  position: absolute;
  top:10px;
  right: 10px;

  opacity: 0;
  transition: all 0.3 ease-in-out;
}

.box-outter {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0000;
}

.input {
    width: 900px;
    height: 200px;

    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.title{
    text-align: center;
    width: 60%;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;



}
.pass {
  width: 80%;
  height: 80px;
  display: flex;
  justify-content: space-between; /* Distribuir espacio entre el input y el botón */
  align-items: center;
  background-color: white;
  border: 1px solid gray;
  border-radius: 50px;
  padding: 0px; /* Añadido padding para separación visual */

}

.pass input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 50px;

 
}

.pass input:focus {
  outline: none;
 
}

.pass .btn {
  width: 8%;
  height: 88%;
  background-color:#fd9001;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  color: white;
  font-size: 20px;
  margin-left: 5px;

}

.push{
  margin: 20px;
  background-color: #afd7b0;
  padding: 5px 10px 5px 10px;
  border-radius: 50px;
  font-size: 13px;
  visibility:hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.btn-copy{
  width: 18%;
  height: 100%;
  background-color:#000000;
  border-radius: 50px;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  

}

.btn-copy:hover{
  background-color:#656565; 
}

.passshow{
    font-size: 1.5vw;
    color: rgb(93, 93, 93); 
    text-align: center;
    font-weight: 600;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh !important;
  z-index: -1;
  pointer-events: none;
}



  .tag{
    background: black;

    color: white;
    padding:10px;
    border-radius: 50px;
    width: 100px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .element {
    transition: transform 0.3s ease-in-out; /* Agregar transición suave */
    transition: all 0.2s ease-in-out;
   
  }
  
  .element:hover {
    transform: rotate(45deg); /* Cambiar el ángulo de rotación según tus necesidades */
    background-color: #fd7701;
  }


  @media screen and (max-width: 780px) {

    canvas {
      position: absolute;
   
      left: 0;
      width: 100% !important;
      height: 100% !important;
      z-index: -1;
      pointer-events: none;
      top: 0 !important;
  
     
    }


    .pass .btn {
      width: 50px;
      height:38px;
      background-color:#fd9001;
      border: none;
      cursor: pointer;
      border-radius: 50px;
      color: white;
      font-size: 20px;
      margin-left: 5px;
    
    }

    .btn-copy{
      width: 18%;
      height: 100%;
      background-color:#000000;
      border-radius: 50px;
      border: none;
      color: white;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      
    
    }
    .passshow{
      font-size: 2.8vw;
      color: rgb(93, 93, 93); 
      text-align: center;
      font-weight: 600;
  }
  }
  