body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
    background-image: url('../image/illustration.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
:root {
    --checkbox-size: 18px; /* Size of the checkbox */
}

.form-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /*transform: scale(0.9)*/
}
.form-row{
    display: flex;
    flex-direction: row;
    gap: 1.25em;
}
.form-row input {
    flex: 1;
}
.form-row:not(.two-inputs) input {
    width: 100%;
}
h1 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="checkbox"] {
    margin-right: 5px;
    text-wrap: wrap;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#errorMessages {
    margin-top: 10px;
    color: red;
}

.helpdesk-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: right;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.helpdesk-info p, .helpdesk-info a {
    margin: 5px 0;
}

.helpdesk-info a {
    color: #007bff;
    text-decoration: none;
}

.helpdesk-info a:hover {
    text-decoration: underline;
}
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.checkbox {
   
    display: inline-block;
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    border: 2px solid currentColor;
    border-radius: 4px;
    position: relative;
    vertical-align: bottom;
    cursor: pointer;
    margin: 10px;
}

    .checkbox .checkmark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg) scaleX(-1);
        width: 50%;
        height: 25%;
        border: solid currentColor;
        border-width: 0 2px 2px 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .checkbox.checked .checkmark {
        opacity: 1;
    }

    .checkbox.green {
        color: green;
    }
    .checkbox.checked {
        background-color: rgba(0, 255, 0, 0.1); /* Subtle background effect */
    }
    .disabled-look {
        opacity: 0.5;
        pointer-events: none;
        cursor: not-allowed;
    }
ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}
input::placeholder {
    font-weight: 300; /* Lighter weight for placeholder text */
}

.usa-error-message:empty {
    display: none
}

