/* --- General Body Styling --- */
body {
    margin: 0;
 
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.header1{

    width: 100%;
    background: #E5F3FD;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
}
.header1 img{
    object-fit: contain;
    width: 50px;
    height: 70px;
    padding: 5px;
}
.header1 h1{
    font-size: 30px;
}
/* --- Page Heading --- */
h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Tablet Heading */
@media (min-width: 768px) {
    h1 {
        font-size: 36px;
    }
}

/* Desktop Heading */
@media (min-width: 1024px) {
    h1 {
        font-size: 44px;
        letter-spacing: 1px;
    }
}

/* --- Form Container --- */
form#qcForm {
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* --- Labels --- */
form#qcForm label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

/* --- Inputs and Textarea --- */
form#qcForm input[type="text"],
form#qcForm input[type="date"],
form#qcForm input[type="number"],
form#qcForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* --- Textarea Specific --- */
form#qcForm textarea {
    resize: vertical;
    min-height: 80px;
}

/* --- Checkbox --- */
form#qcForm input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
    vertical-align: middle;
}

/* --- Submit Button --- */
form#qcForm button[type="submit"] {
    margin-top: 20px;
    padding: 12px;
    background-color: #2c3e50;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form#qcForm button[type="submit"]:hover {
    background-color: #34495e;
    transform: scale(1.02);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    form#qcForm input[type="text"],
    form#qcForm input[type="number"],
    form#qcForm input[type="date"],
    form#qcForm textarea {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    form#qcForm input[type="text"],
    form#qcForm input[type="number"],
    form#qcForm input[type="date"],
    form#qcForm textarea {
        font-size: 18px;
    }
}
