/*
Theme Name: Neve Child
Theme URI: https://yourwebsite.com/neve-child
Description: Child theme for Neve
Author: Clevmind
Author URI: https://yourwebsite.com
Template: neve
Version: 1.0.0
Text Domain: neve-child
*/

/* Import parent theme styles */
@import url("../neve/style.css");

/* Your custom styles go below */
/* Popup Form */
#custom-lead-form input,
#custom-lead-form select,
#custom-lead-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    box-sizing: border-box;
}

#custom-lead-form input[type="submit"] {
    background-color: #4a6cf7;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#custom-lead-form input[type="submit"]:hover {
    background-color: #3653c3;
}

#popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;  /* Hidden by default */
    justify-content: center;
    align-items: center;
}

#popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 500px; /* Increased form width */
}

input, select, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box; /* Ensure padding is inside width */
}

/* Flex container for name and email to display them in a row */
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between name and email fields */
}

.form-column {
    flex: 1; /* Makes the columns flexible to occupy equal space */
}

/* Make the submit button full width */
button[type="submit"] {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

#close-popup {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}
