/* The modal (popup) itself */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scrolling if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

/* Popup content */
.popup-content {
    background-color: transparent;
    margin: 5% auto;
    padding: 0;
    border: 1px solid transparent;
    width: 80%; /* Adjust width */
    max-width: 600px;
    border-radius: 10px;
}

/* Close button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Button inside the popup */
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
}

button:hover {
    background-color: #0056b3;
}

.captchaBackground {
    padding: 10px;
    background-color: black;
    border-radius: 10%;
    margin: 10px;
    font-size: 18px;
    letter-spacing: 3px;
}

.enquiry_form_error {
    color: #e11f26;
    font-size: 12px;
}