/* Verification Form */
.ccs-verify-form{
    max-width:400px;
    margin:30px auto;
    text-align:center;
}
.ccs-verify-form input[type="text"]{
    width:150px;
    padding:7px;
    margin:5px;
    border:1px solid #ccc;
    border-radius:4px;
}

/* Certificate Box */
.ccs-certificate-box{
    border:3px solid #ff6600; /* Orange border */
    background: linear-gradient(to bottom, #fff, #f5f5f5); /* subtle shade */
    color:#000;
    padding:20px;
    max-width:450px;
    margin:30px auto;
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    border-radius:10px;
    font-family:Arial, sans-serif;
    position:relative;
}

/* Box Header */
.ccs-certificate-box h2{
    margin:0 0 8px 0;
    color:#ff6600;
    font-size:22px;
    text-align:center;
}

/* Passport Photo */
.ccs-certificate-box .photo{
    width:80px;
    height:100px;
    object-fit:cover;
    border:2px solid #000;
    border-radius:2px;
    float:left;
    margin-right:15px;
}

/* Student Info Text */
.ccs-certificate-info{
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    font-size:16px;
}
.ccs-certificate-info p{
    margin:3px 0;
}

/* Clear float */
.clearfix::after{
    content:"";
    display:table;
    clear:both;
}
