/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 02 2026 | 12:15:49 */
/* Career Form Submit Button Style */
.submit-btn {
    display: inline-block;
    background-color: #005776;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.submit-btn:hover {
    background-color: #003f56; /* darker shade */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 87, 118, 0.3);
}

/* ======================
 Apply Now Button Form
======================= */

.apply-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #005776;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.apply-btn:hover {
    background-color: #003f56;
    /* darker shade */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 87, 118, 0.3);
}