.verification-section{
    width: 100%;
    position: relative;
    /* transform: translate(-50%, 0%); */
    /* left: 50%; */
    /* top: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 1em;
    max-width: max-content;
    flex-direction: row;
    align-content: center;
}
.verification-tile{
    height: 150px;
    width: 200px;
    position: relative;
}
input[type="checkbox"]{
    -webkit-appearance: none;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: rgb(27, 32, 35);
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
    box-shadow: 15px 15px 25px rgba(2,28,53,0.05);
}
input[type="checkbox"]:after{
    display: none;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f111";
    font-size: 22px;
    top: 10px;
    left: 10px;
    color: #e2e6f3;
}
input[type="checkbox"]:hover{
    background-color: rgb(22, 24, 28);
}
input[type="checkbox"]:checked{
    border: 2px solid #478bfb;
}
input[type="checkbox"]:checked:after{
    font-weight: 900;
    content: "\f058";
    color: #478bfb;
}
.verification-label{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 90%;
    width: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}
.verification-label .fas{
    font-size: 60px;
    color: #2c2c51;
}
.verification-label h6{
    font-family: "Poppins",sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #7b7b93;
}
