.post-password-form{
    display:none;
}

body.single-broadcast_page{
    background:#136692;
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

/* MAIN WRAPPER */
.crfm-password-wrapper{
    background:#136692;
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    box-sizing:border-box;
}

/* FORCE ARIAL */
.crfm-password-wrapper *{
    font-family:Arial,sans-serif !important;
}

/* LOGIN / GO LIVE BOX */
.crfm-password-box{
    width:100%;
    max-width:420px;
    background:#0d2d38;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 0 40px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.08);
    box-sizing:border-box;
    overflow:hidden;
}

/* BRANDING */
.crfm-branding,
.crfm-branding h1{
    font-size:clamp(24px,6vw,42px) !important;
    font-weight:700 !important;
    font-family:Arial,sans-serif !important;
    line-height:1.1 !important;
    text-align:center !important;
    margin:0 0 20px !important;
    padding:0 !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    white-space:normal !important;
    letter-spacing:0 !important;
    color:#ffffff !important;
}

/* GREEN WORD */
.crfm-branding span{
    color:#39ff14 !important;
}

/* GO LIVE TITLE */
.crfm-password-box h2,
.crfm-password-box h3{
    color:#39ff14;
    font-size:clamp(28px,7vw,52px);
    margin:0 0 15px;
    font-weight:900;
    font-family:Arial,sans-serif !important;
    letter-spacing:.5px;
    text-transform:uppercase;
    line-height:1.1;
    word-break:normal;
    overflow-wrap:normal;
}

/* SMALL DESCRIPTION */
.crfm-subtitle{
    color:#d7ecf2;
    font-size:18px;
    margin-bottom:30px;
    font-family:Arial,sans-serif !important;
    line-height:1.5;
    font-weight:400;
}

/* FORM */
.crfm-password-box form{
    width:100%;
}

/* LABEL */
.crfm-password-box label{
    display:block;
    width:100%;
}

/* INPUT */
.crfm-password-box input{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    margin-bottom:18px;
    font-size:18px;
    font-family:Arial,sans-serif !important;
    background:#ffffff;
    color:#071920;
    box-sizing:border-box;
    outline:none;
}

/* INPUT FOCUS */
.crfm-password-box input:focus{
    box-shadow:0 0 0 3px rgba(57,255,20,.25);
}

/* BUTTON */
.crfm-password-box button{
    width:100%;
    padding:18px;
    background:#39ff14;
    color:#071920;
    border:none;
    border-radius:12px;
    font-size:22px;
    font-weight:800;
    font-family:Arial,sans-serif !important;
    cursor:pointer;
    transition:.3s;
    text-transform:uppercase;
    line-height:1.1;
}

/* BUTTON HOVER */
.crfm-password-box button:hover{
    transform:translateY(-2px);
    opacity:.95;
}

/* BUTTON CLICK */
.crfm-password-box button:active{
    transform:translateY(0);
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .crfm-password-wrapper{
        padding:25px 15px;
    }

    .crfm-password-box{
        padding:30px 22px;
        border-radius:16px;
    }

    .crfm-branding,
    .crfm-branding h1{
        font-size:30px !important;
        line-height:1.1 !important;
    }

    .crfm-password-box h2,
    .crfm-password-box h3{
        font-size:38px !important;
        line-height:1.1 !important;
    }

    .crfm-subtitle{
        font-size:16px;
        line-height:1.5;
    }

    .crfm-password-box input{
        font-size:16px;
        padding:14px;
    }

    .crfm-password-box button{
        font-size:20px;
        padding:16px;
    }
}

/* EXTRA SMALL DEVICES */
@media(max-width:480px){

    .crfm-password-box{
        padding:25px 18px;
    }

    .crfm-branding,
    .crfm-branding h1{
        font-size:26px !important;
    }

    .crfm-password-box h2,
    .crfm-password-box h3{
        font-size:32px !important;
    }

    .crfm-subtitle{
        font-size:15px;
    }

    .crfm-password-box button{
        font-size:18px;
    }
}