.inquiry-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 90%;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="email"] {
    width: calc(100% - 22px); /* Adjust for padding */
    padding: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Ensure padding and border are inside the element's total width and height */
	background-color:gray;
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="tel"]:focus,
.inquiry-form input[type="email"]:focus {
    outline: none;
    border-color: #007bff; /* Example focus color */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.inquiry-form button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.inquiry-form button[type="submit"]:hover {
    background-color: #0056b3;
}

.inquiry-form h4 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}