/*
Theme Name: Zix Child
Theme URI: https://zix.droitlab.com/
Description: Child theme for Zix
Author: Your Name
Author URI: Your Website
Template: zix
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zix-child
*/

/* Deployment test: FINAL SUCCESS 2024-07-07 */

/* testing something */
/* FTP Deployment Test - 2024 */
/* Testing new deployment path */
/* Testing with FTP_SERVER_DIR secret */
/* Deployment test: SUCCESS marker */
/* Test deployment with updated server-dir */
/* Final deployment test: SUCCESS */
/* Import parent theme styles */
@import url("../zix/style.css");

/* Add your custom styless below */
/* Test deployment style */
.test-deployment {
    border: 2px solid #007bff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Form Container Styles */
.form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(75, 0, 130, 0.08);
}

/* Label Styles */
.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4b0082;
    margin-bottom: 0.5rem;
    display: block;
}

/* Title Styles */
.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b0082;
    text-align: center;
    margin-bottom: 1rem;
}

/* Subtitle Styles */
.form-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Input Field Styles */
.form-input {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-input:hover {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

.form-input:focus {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.15);
    outline: none;
}

/* Radio Button Styles */
.form-radio {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    accent-color: #4b0082;
    margin-right: 0.5rem;
}

.form-radio:checked {
    accent-color: #4b0082;
}

.form-radio-icon {
    color: #4b0082;
}

/* Select/Dropdown Styles */
.form-select {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234b0082' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.form-select:hover {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

/* Button Styles */
.form-button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    background-color: #4b0082;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-button:hover {
    background-color: #3a0066;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(75, 0, 130, 0.2);
}

/* Upload Button Styles */
.form-upload-button {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    background-color: #f69805;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-upload-button:hover {
    background-color: #e08a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 152, 5, 0.2);
}

/* Calendar Styles */
.form-calendar {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
}

/* Timeline Styles */
.form-timeline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin: 1rem 0;
}

/* Pagination Styles */
.form-pagination {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4b0082;
    margin: 2rem 0;
}

/* Error Message Styles */
.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Success Message Styles */
.form-success {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-button,
    .form-upload-button {
        width: 100%;
    }
}

/* Forminator Form Container */
.forminator-ui.forminator-custom-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(75, 0, 130, 0.08);
    padding: 48px 40px 32px 40px;
    margin: 32px auto;
    max-width: 800px;
}

/* Form Labels */
.forminator-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4b0082;
    margin-bottom: 0.5rem;
    display: block;
}

/* Form Inputs */
.forminator-input {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.forminator-input:hover {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

.forminator-input:focus {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.15);
    outline: none;
}

/* Select Fields */
.forminator-select {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234b0082' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.forminator-select:hover {
    border-color: #4b0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

/* Radio Buttons */
.forminator-radio {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.forminator-radio input[type="radio"] {
    accent-color: #4b0082;
    margin-right: 0.5rem;
}

.forminator-radio-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
}

/* Checkboxes */
.forminator-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.forminator-checkbox input[type="checkbox"] {
    accent-color: #4b0082;
    margin-right: 0.5rem;
}

.forminator-checkbox-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #333;
}

/* File Upload */
.forminator-file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.forminator-button-upload {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    background-color: #f69805;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forminator-button-upload:hover {
    background-color: #e08a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 152, 5, 0.2);
}

/* Submit Button */
.forminator-button-submit {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background-color: #4b0082;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.forminator-button-submit:hover {
    background-color: #3a0066;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(75, 0, 130, 0.2);
}

/* Error Messages */
.forminator-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Description Text */
.forminator-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Required Field Indicator */
.forminator-required {
    color: #dc3545;
    margin-left: 0.25rem;
}

/* Form Rows and Columns */
.forminator-row {
    margin-bottom: 1.5rem;
}

.forminator-col {
    padding: 0 1rem;
}

/* Consent Checkbox */
.forminator-consent__label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin-left: 0.5rem;
}

.forminator-consent__label a {
    color: #4b0082;
    text-decoration: none;
}

.forminator-consent__label a:hover {
    text-decoration: underline;
}

/* HTML Content */
.forminator-merge-tags p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .forminator-ui.forminator-custom-form {
        padding: 32px 16px;
    }
}

@media (max-width: 600px) {
    .forminator-ui.forminator-custom-form {
        padding: 16px 8px;
    }
}

.forminator-ui.forminator-custom-form .forminator-input {
    border: 2px solid #4b0082 !important;
    border-radius: 8px !important;
    background: #f9f6ff !important;
}

.forminator-ui.forminator-custom-form .forminator-label {
    color: #4b0082 !important;
    font-family: 'Inter', sans-serif !important;
}

body {
    background: #f9f9f9;
}

.breadcrumbs_area, .breadcrumbs_area:before {
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
    overflow: hidden;
}
