.tooltip {
    position: relative;
    

    
    
    }
       
    .tooltip .tooltiptext {
    visibility: hidden;
    width:90%;
    background-color: #333;
    color: #fffe;
    text-align: center;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 5%;
    font-size: 1rem;
    font-family: sans-serif;
    border: 0.5px groove #fffa;
    border-radius: 5px;


    
    }
    
    .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left:50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
    }
    
    .tooltip input:focus ~ .tooltiptext {
    visibility: visible;
    }
    