/* Super WP Plugin Zipper Custom Styles */
.pzc-form {
    background: linear-gradient(135deg, #f3f4f6, #e0e7ff);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pzc-title {
    color: #007bff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-label {
    margin-bottom: 0.25rem; /* Reduced label-field gap to half (default is 0.5rem in Bootstrap) */
}

.pzc-input, .pzc-textarea {
    border: 2px solid #007bff;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.pzc-input-short {
    padding: 0.375rem 0.75rem; /* Reduced height by approximately 20% */
}

.pzc-input:focus, .pzc-textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}

.pzc-button {
    background: linear-gradient(45deg, #007bff, #00d4ff);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.pzc-button:hover {
    background: linear-gradient(45deg, #00d4ff, #007bff);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.pzc-button:active {
    transform: scale(0.95);
}

.pzc-result .alert {
    margin-top: 15px;
    border-radius: 8px;
    font-weight: 500;
}

/* Ensure proper spacing between fields */
.row .col-md-6, .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .pzc-form {
        padding: 15px;
    }
    .pzc-button {
        font-size: 1rem;
        padding: 10px;
    }
    .row .col-md-6, .row .col-12 {
        margin-bottom: 5px; /* Reduced margin for mobile */
        padding-left: 5px;
        padding-right: 5px;
    }
}