body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px; /* Updated padding */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
	font-size: 25px;
}

.section h2 {
    font-size: 25px; /* Updated font size */
	   margin-bottom: 10px;
    
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.input-group label {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 20px; /* Updated font size */
}

.input-group input, .input-group select {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 16px;
    height: 40px;
    box-sizing: border-box;
}

.input-group span {
    font-weight: bold;
    color: #2980b9;
    margin-top: 5px;
}

.note {
    font-size: 18px; /* Increased font size */
    color: #555;
    margin-top: 10px;
    margin-bottom: 0px; /* Set margin-bottom to 0px */
}

.large-note {
    font-size: 18px; /* Increased font size */
    margin-top: 10px;
    margin-bottom: 0px; /* Set margin-bottom to 0px */
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 16px; /* Match font size with job offer options */
    font-weight: normal; /* Match font weight with job offer options */
    color: #000; /* Match color with job offer options */
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 5px;
}

.total-score {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    font-weight: bold;
    color: #2c3e50;
    font-size: 25px; /* Updated font size for the total score */
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .section h2 {
        font-size: 25px; /* Font size for h2 in mobile */
        margin-top: 20px; /* Increased top margin for h2 in mobile */
    }

    .input-group input, .input-group select {
        font-size: 14px;
        padding: 8px;
    }

    .note, .error-message {
        font-size: 16px; /* Font size for note and error-message in mobile */
        font-weight: normal; /* Remove bold font weight */
    }

    .total-score {
        font-size: 25px; /* Updated font size for the total score in mobile */
    }
}
