/* ===============================
   Church Capital Login
=============================== */
.ccbp-login-page{
    min-height:100dvh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:url('../images/bg.png') center center/cover no-repeat;
    background-color:#f4f6f9;
}
.ccbp-login-card{
    width:100%;
    max-width:880px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(15,23,42,.12);
    display:grid;
    grid-template-columns:320px 1fr;
    overflow:hidden;
}
/* LEFT PANEL */
.ccbp-left{
    background:linear-gradient(160deg,#0284c7,#036aa1);
    color:#fff !important;
    padding:44px 36px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:100%;
}
.ccbp-logo{
    width:120px;
    margin-bottom:28px;
}
.ccbp-eyebrow{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#bfe6fb !important;
    margin-bottom:14px;
}
.ccbp-left h1{
    font-size:20px;
    line-height:1.25;
    margin:0 0 16px;
    font-weight:700;
    color:#fff !important;
}
.ccbp-tagline{
    font-size:14.5px;
    line-height:1.7;
    color:#e4f3fc !important;
    margin:0;
}
.ccbp-features{
    list-style:none;
    margin:28px 0 0;
    padding:16px;
    background:rgba(255,255,255,.08);
    border-radius:10px;
}
.ccbp-features li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13.5px;
    color:#eef7ff !important;
    padding:8px 0;
}
.ccbp-features li i{
    color:#7dd3fc !important;
    font-size:14px;
}
/* RIGHT PANEL */
.ccbp-right{
    padding:52px 56px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.ccbp-form-box h2{
    font-size:32px;
    margin:0;
    color:#0f172a;
    font-weight:700;
}
.ccbp-subtitle{
    margin:8px 0 30px;
    color:#64748b;
    font-size:14.5px;
}
.ccbp-field{
    margin-bottom:20px;
}
.ccbp-field label{
    display:block;
    font-weight:600;
    font-size:14px;
    color:#0f172a;
    margin-bottom:8px;
}
.ccbp-label-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:8px;
}
.ccbp-label-row label{
    margin-bottom:0;
}
.ccbp-label-row a{
    color:#0284c7;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
}
.ccbp-field input{
    width:100%;
    padding:12px 16px;
    border:1px solid #d9dee5;
    border-radius:8px;
    font-size:14px;
    background:#fff;
    transition:border-color .15s ease;
}
.ccbp-field input:focus{
    outline:none;
    border-color:#0284c7;
    box-shadow:0 0 0 3px rgba(2,132,199,.12);
}

/* Button: fit-width and centered by default (desktop) */
.ccbp-btn{
    display:block;
    width:fit-content;
    margin:6px auto 0;
    background:#0284c7;
    color:#fff !important;
    border:none;
    padding:12px 32px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:background .15s ease;
}
.ccbp-btn:hover{
    background:#0369a1;
    color:#fff !important;
}
.ccbp-register{
    margin-top:22px;
    color:#64748b;
    font-size:14px;
    text-align:center;
}
.ccbp-register a{
    color:#0284c7;
    font-weight:600;
    text-decoration:none;
}
.ccbp-footer{
    margin-top:14px;
    color:#94a3b8;
    font-size:12.5px;
    text-align:center;
}
.ccbp-footer a{
    color:#64748b;
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:900px){
    .ccbp-login-card{
        grid-template-columns:280px 1fr;
    }
    .ccbp-right{
        padding:40px;
    }
}

@media(max-width:768px){
    .ccbp-login-card{
        grid-template-columns:1fr;
        max-width:460px;
    }
    .ccbp-left{
        display:none;
    }
    .ccbp-right{
        padding:36px 30px;
    }
    .ccbp-form-box h2{
        font-size:28px;
    }

    /* Full width button on mobile */
    .ccbp-btn{
        width:100%;
        margin:6px 0 0;
    }
}

@media(max-width:480px){

    .ccbp-login-page{
        min-height:100dvh;
        padding:14px;
        align-items:center;
    }

    .ccbp-login-card{
        max-width:100%;
        border-radius:18px;
    }

    .ccbp-right{
        padding:26px 22px;
    }

    .ccbp-form-box h2{
        font-size:22px;
        margin-bottom:8px;
    }

    .ccbp-subtitle{
        font-size:14px;
        margin-bottom:20px;
    }

    .ccbp-field{
        margin-bottom:14px;
    }

    .ccbp-field label{
        margin-bottom:6px;
    }

    .ccbp-field input{
        padding:12px 14px;
        font-size:14px;
    }

    .ccbp-btn{
        width:100%;
        margin-top:6px;
        padding:13px;
    }

    .ccbp-register{
        margin-top:18px;
    }

    .ccbp-footer{
        margin-top:10px;
        font-size:12px;
    }

}