/* General form styles */
#lf_form_preview {
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

#lf_form_container {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* Input and Textarea Styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #007bff;
    outline: none;
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Labels */
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Hidden input fields (for non-interactive elements) */
input[type="hidden"] {
    display: none;
}

/* Button Styles */
button[type="submit"],
input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Row and Column Layouts */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.input-filled {
    padding: 0 15px;
    margin-bottom: 15px;
    flex: 1 1 100%;
}

.col-lg-6,
.col-md-6 {
    flex: 1 1 50%;
    padding: 0 15px;
}

.col-12 {
    flex: 1 1 100%;
}

/* Placeholder Text */
input::placeholder,
textarea::placeholder {
    color: #777;
    font-style: italic;
}

/* Blank field for bots (honeypot field) */
#lf_wrap {
    display: none;
}

/* Additional styles for small inputs like phone or other fields */
input[name="lf_phone"] {
    max-width: 100%;
}

/* Custom select styling for dropdowns */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

select:focus {
    border-color: #007bff;
    outline: none;
}

/* Footer privacy and acceptance text */
.acceptance-1 {
    font-size: 14px;
    color: #555;
}

.acceptance-1 a {
    color: #007bff;
    text-decoration: none;
}

.acceptance-1 a:hover {
    text-decoration: underline;
}

input[type="checkbox"] {
    margin-right: 10px; /* Space between the checkbox and the label */
    vertical-align: middle; /* Align checkbox with label text */
}

label[for="lf_disclaimer"] {
    font-size: 14px; /* Adjust font size for better readability */
    line-height: 1.6; /* Adjust line height for consistent spacing */
}
p {
    align-items: center; /* Vertically center the checkbox and label */
    margin: 15px 0; /* Margin around the checkbox and label */
}