/* styles.css */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url(../images/certbg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #333;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 92vh;
}

.header_title {
    margin-top: 10vh;
    text-align: center;
}

.logo {
    width: 200px;
}

.title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

.main_p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.form-container {
    background: #fff;
    color: #333;
    padding: 50px;
    width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
}

.illustration img {
    max-width: 300px;
    margin-right: 50px;
}

.query-form {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.query-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    outline: none;
}

input::placeholder {
    color: #ccc;
    opacity: 1;
}

.captcha {
    display: flex;
    align-items: center;
}

.captcha input {
    flex: 1;
}

.captcha-image {
    margin-left: 10px;
    max-height: 40px;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: #DA241A;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-top: 40px;
}

.btn-submit:hover {
    background: #B41A14;
}

.footer {
    margin-bottom: 20px;
    font-size: 12px;
}
.result-container{
    width: 1000px;
    padding:30px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.table-container td{
    width: 14%;
    padding: 15px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}
.table-container thead{
    background-color: #f0f0f0;
}
.result-title h2{
    text-align: left;
    font-size: 16px;
    border-left: #B41A14 solid 5px;
    padding-left: 10px;
    margin-bottom: 20px;
}
#cert_img{
    display: block;
    width: 100%;
}
.imgbox22{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.imgbox22>div{
    width: 50%;
    padding: 20px;
}



