.clp-popup-overlay{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.6);

    z-index:999999;

    justify-content:center;
    align-items:center;

}

.clp-popup{

    background:#fff;

    width:420px;

    max-height:90vh;

    overflow:auto;

    max-width:95%;

    padding:25px;

    border-radius:12px;

    position:relative;

}

.clp-close{

    position:absolute;

    right:20px;

    top:15px;

    cursor:pointer;

    font-size:25px;

}

#clp-form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

#clp-form input{

    padding:12px;

    border:1px solid #ddd;

    border-radius:8px;

}

#clp-submit{

    background:#0d6efd;

    color:white;

    border:none;

    padding:12px;

    border-radius:8px;

    cursor:pointer;

}

.clp-data{
    display:none;
}

.clp-field{

    margin-bottom:18px;

}

.clp-field label{

    display:block;

    margin-bottom:6px;

    font-weight:600;

}

.clp-field span{

    color:red;

}

.clp-field input{

    width:100%;

    padding:12px;

    border:1px solid #d8d8d8;

    border-radius:8px;

    box-sizing:border-box;

}

.clp-consent{

    margin-bottom:20px;

    font-size:14px;

}

.clp-consent label{

    display:flex;

    gap:8px;

    align-items:flex-start;

}

.clp-privacy{

    margin-top:15px;

    font-size:12px;

    color:#666;

    text-align:center;

}

.clp-error{
    color:#d63638;
    font-size:13px;
    margin-top:5px;
    min-height:18px;
}

.clp-invalid{
    border:1px solid #d63638 !important;
}