.form-group-custom {
    background-color: #ffff; /* Light grey for a subtle contrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 20px;
    margin: 20px 0;
    font-family: Arial, sans-serif; /* Clean and professional font */
    color: #333; /* Dark grey text for better readability */
}

.form-group-custom label {
    font-weight: bold;
    color: #555; /* Medium grey for labels */
    display: block;
    margin-bottom: 10px;
}

.form-group-custom p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #666; /* Slightly lighter grey for paragraph text */
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-radio input[type="radio"] {
    margin-right: 5px;
}

.custom-radio label {
    color: #333; /* Same dark grey as form text */
}
/* .form-group-custom label {
    font-weight: bold;
    margin-bottom: 0.5rem;
} */
.form-group-custom input {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group-custom input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}