body {
    font-family: Arial, sans-serif;
    background-color: white; /* Set the background color of the body to white */
}

form {
    padding: 30px;
    border-radius: 5px;
    background-color: #f5f5f5; /* Set the background color of the form */
    color: black; /* Set the text color to black */
}

.inline-element {
    display: flex;
    gap: 45px;
}

.inline-element div {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="date"],
input[type="time"],
select {
    width: 100%;
    padding: 13px;
    margin-bottom: 20px;
    border: none;
    background: white; /* Set the background color of the input fields to white */
    border-radius: 20px;
    color: black; /* Set the text color to black */
}

input[type="submit"] {
    width: 103%;
    padding: 12px;
    background: gray;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.service-option input {
    margin-top: -7px;
    height: 20px;
    width: 20px;
}

/* Mobile and Tablet Responsive Layout */
@media screen and (max-width: 767px) {
    .inline-element {
        flex-direction: column;
        gap: 0;
    }

    input,
    select {
        margin-bottom: 10px;
    }

    label {
        font-size: 13px;
    }
}
