/* Northeast PTA Feedback Form Styles */

.ne-feedback-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007cba;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.ne-feedback-header {
    text-align: center;
    margin-bottom: 30px;
}

.ne-feedback-header h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ne-feedback-header p {
    color: #5a6c7d;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.ne-feedback-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.ne-form-group {
    margin-bottom: 20px;
}

.ne-form-group label {
    display: block;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ne-form-group label .required {
    color: #dc3545;
}

.ne-form-group input[type="text"],
.ne-form-group input[type="email"],
.ne-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.ne-form-group input[type="text"]:focus,
.ne-form-group input[type="email"]:focus,
.ne-form-group textarea:focus {
    outline: none;
    border-color: #007cba;
}

.ne-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ne-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ne-checkbox-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
}

.ne-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 500 !important;
}

.ne-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ne-checkbox-label span {
    color: #2c3e50;
    font-size: 15px;
}

.ne-help-text {
    color: #7a8b9c;
    font-size: 13px;
    margin: 8px 0 0 28px;
}

.ne-form-actions {
    margin-top: 25px;
    text-align: center;
}

.ne-submit-btn {
    background: linear-gradient(135deg, #007cba 0%, #4a90e2 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ne-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.ne-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ne-form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.ne-form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ne-form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ne-feedback-container {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .ne-feedback-header h2 {
        font-size: 24px;
    }
    
    .ne-feedback-header p {
        font-size: 15px;
    }
    
    .ne-feedback-form {
        padding: 20px;
    }
    
    .ne-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ne-submit-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
}