/* =========================================================
   Health Care Point - Vendor Registration
========================================================= */

*{
    box-sizing:border-box;
}

.hcp-vendor-card{

    max-width:950px;

    margin:40px auto;

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    overflow:hidden;

}

.hcp-header{

    display:flex;

    align-items:center;

    gap:20px;

    padding:25px 35px;

    background:linear-gradient(135deg,#0d6efd,#00b4d8);

    color:#fff;

}

.hcp-logo{

    width:65px;

    height:65px;

    object-fit:contain;

    background:#fff;

    border-radius:50%;

    padding:8px;

}

.hcp-header h2{

    margin:0;

    font-size:30px;

    color:#fff;

}

.hcp-header p{

    margin-top:6px;

    opacity:.9;

    color:#fff;

}

#hcpVendorForm{

    padding:35px;

}

.hcp-row{

    display:flex;

    gap:20px;

    margin-bottom:22px;

}

.hcp-col{

    flex:1;

}

.hcp-col-full{

    width:100%;

    margin-bottom:22px;

}

#hcpVendorForm label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#444;

}

#hcpVendorForm input[type=text],

#hcpVendorForm input[type=email],

#hcpVendorForm select,

#hcpVendorForm textarea{

    width:100%;

    height:48px;

    border:1px solid #d8d8d8;

    border-radius:10px;

    padding:0 15px;

    font-size:15px;

    transition:.3s;

    background:#fafafa;

}

#hcpVendorForm textarea{

    height:110px;

    padding-top:15px;

    resize:none;

}

#hcpVendorForm input:focus,

#hcpVendorForm textarea:focus,

#hcpVendorForm select:focus{

    border-color:#0d6efd;

    background:#fff;

    outline:none;

    box-shadow:0 0 10px rgba(13,110,253,.15);

}

.hcp-check{

    margin:25px 0;

}

.hcp-btn{

    width:100%;

    height:52px;

    border:none;

    border-radius:10px;

    background:#0d6efd;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.hcp-btn:hover{

    background:#084db8;

}

.hcp-success{

    margin:25px;

    padding:15px;

    border-radius:8px;

    background:#d1e7dd;

    color:#0f5132;

}

.hcp-error{

    margin:25px;

    padding:15px;

    border-radius:8px;

    background:#f8d7da;

    color:#842029;

}

@media(max-width:768px){

.hcp-header{

flex-direction:column;

text-align:center;

}

.hcp-row{

flex-direction:column;

gap:15px;

}

#hcpVendorForm{

padding:20px;

}

.hcp-header{

padding:20px;

}

.hcp-header h2{

font-size:24px;

}

}