/* style.css */
body {
    font-family: Arial, sans-serif;
    background: url('css/background.svg') no-repeat;
    background-position: left;
    margin: 0;
    padding: 20px;

    /* Hardware acceleration (forces GPU rendering) */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}
.container {
    max-width: 600px;
    margin: auto;
    background: #F4F4F4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.radio-group {
    margin: 10px 0;
}
.radio-group input[type="radio"] {
    margin-right: 8px;
}

.radio-group label {
    font-weight: normal;
    display: inline;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #005a87;
}

.entry {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #f9f9f9;
}
label.required::after,
label[for="inductee_yes"]::after {
    content: " *";
    color: red;
    font-weight: bold;
	font-size: 1.2em;
    margin-left: 2px;
}

/* Optional: Style labels to make asterisk align nicely */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Optional: subtle hint */
form {
    font-size: 15px;
}

form small {
    color: #555;
}