.anon-form-wrapper {
    font-family: inherit;
}

.anon-form {
    max-width: 550px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fcfcfc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.anon-form .form-title {
    text-align: center;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.anon-form .intro-question {
    font-size: 1.1em;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    color: #444;
}

.anon-form .submission-choice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.anon-form .radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.anon-form .radio-group:last-child {
    margin-bottom: 0;
}

.anon-form .radio-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.anon-form input[type="radio"] {
    margin-right: 10px;
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
    accent-color: #007bff;
}

.anon-form .form-group {
    margin-bottom: 1.25rem;
}

.anon-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.anon-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.anon-form .form-control::placeholder {
    color: #999;
    opacity: 1;
}

.anon-form .form-control:focus {
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.anon-form .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 100%;
}

.anon-form .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.anon-form .btn-primary:hover {
    background-color: #0056b3;
}

.anon-form .btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.anon-form .form-message-area {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.anon-form .form-message-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    display: block;
}

.anon-form .form-message-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    display: block;
}

.hcaptcha-container {
    margin-bottom: 1.25rem;
}

.hidden {
    display: none;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

/* --- MOBILE FRIENDLY STYLES --- */
@media (max-width: 600px) {
    .anon-form {
        padding: 20px;
        /* Less padding on small screens */
    }

    .anon-form .form-title {
        font-size: 1.3em;
        /* Make title slightly smaller */
    }

    .anon-form .intro-question {
        font-size: 1em;
    }
}