:root {
    --dps-blue: #003865;
    --dps-gold: #FFCC33;
    --dps-text: #333333;
    --dps-border: #D1D3D4;
    --light-bg: #F1F2F2;
    --white: #ffffff;
}

body { 
    font-family: Arial, sans-serif; 
    background-color: var(--light-bg);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.gov-header {
    width: 100%;
    background-color: var(--dps-blue);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    border-bottom: 4px solid var(--dps-gold);
    font-weight: bold;
}

.card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--dps-border);
    width: 90%;
    max-width: 450px;
    margin: 40px auto;
}

h2 { color: var(--dps-blue); border-bottom: 2px solid var(--dps-blue); padding-bottom: 10px; text-transform: uppercase; font-size: 1.2rem; }

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid var(--dps-border);
    box-sizing: border-box;
}

input:required:invalid:not(:placeholder-shown) {
    border-color: #d9534f;
    background-color: #fff8f8;
}

.checkbox-group { margin-top: 15px; padding: 15px; background: #f9f9f9; border-left: 5px solid var(--dps-blue); }

.checkbox-item { display: flex; align-items: center; margin-bottom: 12px; }
.checkbox-item input { width: 22px; height: 22px; margin-right: 12px; flex-shrink: 0; }

button {
    width: 100%;
    padding: 15px;
    background-color: var(--dps-blue);
    color: var(--white);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

#msg { margin-top: 20px; font-weight: bold; text-align: center; }
.footer-link { text-align: center; margin-top: 15px; font-size: 0.8rem; }
.footer-link a { color: var(--dps-blue); }

.captcha-container {
    margin-top: 20px;    /* Space above the Turnstile */
    margin-bottom: 20px; /* Space below the Turnstile */
    display: flex;
    justify-content: center; /* Centers the widget in the card */
}
