/* =========================
   LIQUID GLASS BASE
========================= */

#b2b-extra input {
    display:block;
    width:100%;
    margin:8px 0;
    padding:10px;
}

#b2b-terms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#b2b-terms-modal {
    width: 90%;
    max-width: 750px;
    height: 80vh;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);

    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
}

.b2b-terms-header {
    padding: 15px 20px;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.b2b-terms-content {
    padding:20px;
    overflow-y:auto;
    font-size:14px;
    line-height:1.6;
}