

/* Popup Background */
.popup {
    display: flex; /* Flex to center */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
}

/* Popup Content Box */
.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px; /* Rounded Corners */
    width: 500px;
    max-width: 100%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    position: relative;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out; /* Animation */
}

/* Close Button */
.closeBtn {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
}

.closeBtn:hover,
.closeBtn:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styling */
form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form textarea {
    resize: vertical; /* Enable vertical resize */
}

.submitBtn {
    background-color: #ff7e5f;
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.submitBtn:hover {
    background-color: #feb47b; /* Hover effect */
}

/* Popup Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
