body {
    font-family: Arial, sans-serif;
}

form {
    padding: 30px;
    border-radius: 5px;
    /* color: white; */
}

.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: rgba(100, 100, 100, 0.263);
    border-radius: 20px;
}

input[type="submit"] {
    width: 103%;
    padding: 12px;
    background: #13eee3;
    color: white;
    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;
    }
}