/* General Styling */
.health-check-section {
    text-align: center;
    padding: 20px;
    margin-top: 135px;
   
}

.health-check-section h1 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 20px;
}

.health-check-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

form.health-check-form {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

fieldset {
    border: none;
    margin-bottom: 20px;
}

legend {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}
