.privacy-policy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.privacy-policy a {
    color: #956ac6;
    text-decoration: underline;
}

.privacy-policy input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;

}
/* custom checkbox input */
.privacy-policy input:checked:after {
    content: "\f00c"; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    background-color: #956ac6;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    border: 2px solid #956ac6;
    box-shadow: 0 0 5px rgba(149, 106, 198, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

