#test_drive_form {
    background-color: #fff;
    border-radius: 16px;
}

#test_drive_form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

#test_drive_form input[type="text"],
#test_drive_form input[type="email"],
#test_drive_form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
    box-shadow: unset;
}

#test_drive_form input[type="text"]:focus,
#test_drive_form input[type="email"]:focus,
#test_drive_form textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.3);
}

#test_drive_form input#car_model {
    background-color: #e9ecef;
    cursor: not-allowed;
}

#test_drive_form input[type="submit"] {
    background-color: #006737;
    color: white !important;
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

#test_drive_form input[type="submit"]:hover {
    background-color: #0056b3;
}

#test_drive_response {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

#test_drive_response .success {
    color: #fff;
    font-weight: bold;
    background: #006737;
    padding: 10px;
    border-radius: 12px;
}

#test_drive_response .error {
    color: #fff;
    font-weight: bold;
    background: #dc3545;
    padding: 10px;
    border-radius: 12px;
}

#test_drive_form textarea {
    height: 100px;
    resize: vertical;
}
