
/*******************************************************
 * Shared Form Layout
 *******************************************************/
.certificate-search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.certificate-search-form h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.certificate-search-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.certificate-search-form input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.certificate-search-form button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #fcb900;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.certificate-search-form button:hover {
    background-color: #e6a800;
}



